Class MongoDataSource
- java.lang.Object
-
- io.vertx.rxjava3.servicediscovery.types.MongoDataSource
-
-
Field Summary
Fields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<MongoDataSource>
__TYPE_ARG
static String
TYPE
static String
UNKNOWN
Unknown type.
-
Constructor Summary
Constructors Constructor Description MongoDataSource(MongoDataSource delegate)
MongoDataSource(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Record
createRecord(String name, JsonObject location, JsonObject metadata)
Convenient method to create a record for a Mongo data source.boolean
equals(Object o)
MongoDataSource
getDelegate()
static Single<MongoClient>
getMongoClient(ServiceDiscovery discovery, JsonObject filter)
Convenient method that looks for a Mongo datasource source and provides the configuredMongoClient
.static Single<MongoClient>
getMongoClient(ServiceDiscovery discovery, JsonObject filter, JsonObject consumerConfiguration)
Convenient method that looks for a Mongo datasource source and provides the configuredMongoClient
.static Single<MongoClient>
getMongoClient(ServiceDiscovery discovery, Function<Record,Boolean> filter)
Convenient method that looks for a Mongo datasource source and provides the configuredMongoClient
.int
hashCode()
static MongoDataSource
newInstance(MongoDataSource arg)
static Single<MongoClient>
rxGetMongoClient(ServiceDiscovery discovery, JsonObject filter)
Convenient method that looks for a Mongo datasource source and provides the configuredMongoClient
.static Single<MongoClient>
rxGetMongoClient(ServiceDiscovery discovery, JsonObject filter, JsonObject consumerConfiguration)
Convenient method that looks for a Mongo datasource source and provides the configuredMongoClient
.static Single<MongoClient>
rxGetMongoClient(ServiceDiscovery discovery, Function<Record,Boolean> filter)
Convenient method that looks for a Mongo datasource source and provides the configuredMongoClient
.String
toString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final io.vertx.lang.rx.TypeArg<MongoDataSource> __TYPE_ARG
-
UNKNOWN
public static final String UNKNOWN
Unknown type.- See Also:
- Constant Field Values
-
TYPE
public static final String TYPE
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
MongoDataSource
public MongoDataSource(MongoDataSource delegate)
-
MongoDataSource
public MongoDataSource(Object delegate)
-
-
Method Detail
-
getDelegate
public MongoDataSource getDelegate()
- Specified by:
getDelegate
in interfaceio.vertx.lang.rx.RxDelegate
-
createRecord
public static Record createRecord(String name, JsonObject location, JsonObject metadata)
Convenient method to create a record for a Mongo data source.- Parameters:
name
- the service namelocation
- the location of the service (e.g. url, port...)metadata
- additional metadata- Returns:
- the created record
-
getMongoClient
public static Single<MongoClient> getMongoClient(ServiceDiscovery discovery, JsonObject filter)
Convenient method that looks for a Mongo datasource source and provides the configuredMongoClient
. The async result is marked as failed is there are no matching services, or if the lookup fails.- Parameters:
discovery
- The service discovery instancefilter
- The filter, optional- Returns:
- a future notified with the client
-
rxGetMongoClient
public static Single<MongoClient> rxGetMongoClient(ServiceDiscovery discovery, JsonObject filter)
Convenient method that looks for a Mongo datasource source and provides the configuredMongoClient
. The async result is marked as failed is there are no matching services, or if the lookup fails.- Parameters:
discovery
- The service discovery instancefilter
- The filter, optional- Returns:
- a future notified with the client
-
getMongoClient
public static Single<MongoClient> getMongoClient(ServiceDiscovery discovery, Function<Record,Boolean> filter)
Convenient method that looks for a Mongo datasource source and provides the configuredMongoClient
. The async result is marked as failed is there are no matching services, or if the lookup fails.- Parameters:
discovery
- The service discovery instancefilter
- The filter- Returns:
- a future notified with the client
-
rxGetMongoClient
public static Single<MongoClient> rxGetMongoClient(ServiceDiscovery discovery, Function<Record,Boolean> filter)
Convenient method that looks for a Mongo datasource source and provides the configuredMongoClient
. The async result is marked as failed is there are no matching services, or if the lookup fails.- Parameters:
discovery
- The service discovery instancefilter
- The filter- Returns:
- a future notified with the client
-
getMongoClient
public static Single<MongoClient> getMongoClient(ServiceDiscovery discovery, JsonObject filter, JsonObject consumerConfiguration)
Convenient method that looks for a Mongo datasource source and provides the configuredMongoClient
. The async result is marked as failed is there are no matching services, or if the lookup fails.- Parameters:
discovery
- The service discovery instancefilter
- The filter, optionalconsumerConfiguration
- the consumer configuration- Returns:
- a future notified with the client
-
rxGetMongoClient
public static Single<MongoClient> rxGetMongoClient(ServiceDiscovery discovery, JsonObject filter, JsonObject consumerConfiguration)
Convenient method that looks for a Mongo datasource source and provides the configuredMongoClient
. The async result is marked as failed is there are no matching services, or if the lookup fails.- Parameters:
discovery
- The service discovery instancefilter
- The filter, optionalconsumerConfiguration
- the consumer configuration- Returns:
- a future notified with the client
-
newInstance
public static MongoDataSource newInstance(MongoDataSource arg)
-
-