Package io.vertx.servicediscovery.types
Interface MessageSource
-
- All Superinterfaces:
ServiceType
public interface MessageSource extends ServiceType
Service type for data producer. Providers are publishing data to a specific event bus address.- Author:
- Clement Escoffier
-
-
Field Summary
Fields Modifier and Type Field Description static String
TYPE
-
Fields inherited from interface io.vertx.servicediscovery.spi.ServiceType
UNKNOWN
-
-
Method Summary
Static Methods Modifier and Type Method Description static Record
createRecord(String name, String address)
Same ascreateRecord(String, String, Class, JsonObject)
without additional metadata, and no type for the payload.static Record
createRecord(String name, String address, Class type)
Same ascreateRecord(String, String, Class, JsonObject)
without additional metadata.static Record
createRecord(String name, String address, Class type, JsonObject metadata)
Create a record representing a data producer.static Record
createRecord(String name, String address, String type)
Same ascreateRecord(String, String, String, JsonObject)
without additional metadata.static Record
createRecord(String name, String address, String type, JsonObject metadata)
Create a record representing a data producer.static <T> Future<MessageConsumer<T>>
getConsumer(ServiceDiscovery discovery, JsonObject filter)
Convenient method that looks for a message source and provides the configuredMessageConsumer
.static <T> Future<MessageConsumer<T>>
getConsumer(ServiceDiscovery discovery, java.util.function.Function<Record,Boolean> filter)
Convenient method that looks for a message source and provides the configuredMessageConsumer
.-
Methods inherited from interface io.vertx.servicediscovery.spi.ServiceType
get, name
-
-
-
-
Field Detail
-
TYPE
static final String TYPE
- See Also:
- Constant Field Values
-
-
Method Detail
-
createRecord
static Record createRecord(String name, String address, String type, JsonObject metadata)
Create a record representing a data producer.- Parameters:
name
- the name of the serviceaddress
- the address on which the data is senttype
- the type of payload (fully qualified name of the class)metadata
- additional metadata- Returns:
- the created record
-
createRecord
static Record createRecord(String name, String address, Class type, JsonObject metadata)
Create a record representing a data producer.- Parameters:
name
- the name of the serviceaddress
- the address on which the data is senttype
- the type of payloadmetadata
- additional metadata- Returns:
- the created record
-
createRecord
static Record createRecord(String name, String address, Class type)
Same ascreateRecord(String, String, Class, JsonObject)
without additional metadata.- Parameters:
name
- the name of the serviceaddress
- the address on which the data is senttype
- the type of payload- Returns:
- the created record
-
createRecord
static Record createRecord(String name, String address, String type)
Same ascreateRecord(String, String, String, JsonObject)
without additional metadata.- Parameters:
name
- the name of the serviceaddress
- the address on which the data is senttype
- the type of payload- Returns:
- the created record
-
createRecord
static Record createRecord(String name, String address)
Same ascreateRecord(String, String, Class, JsonObject)
without additional metadata, and no type for the payload.- Parameters:
name
- the name of the serviceaddress
- the address on which the data is sent.- Returns:
- the created record
-
getConsumer
static <T> Future<MessageConsumer<T>> getConsumer(ServiceDiscovery discovery, JsonObject filter)
Convenient method that looks for a message source and provides the configuredMessageConsumer
. 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
-
getConsumer
static <T> Future<MessageConsumer<T>> getConsumer(ServiceDiscovery discovery, java.util.function.Function<Record,Boolean> filter)
Convenient method that looks for a message source and provides the configuredMessageConsumer
. 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, must not benull
- Returns:
- a future notified with the client
-
-