public interface EventBusService extends ServiceType
ServiceType
for event bus services (service proxies).
Consumers receive a service proxy to use the service.Modifier and Type | Field and Description |
---|---|
static String |
TYPE
Name of the type.
|
UNKNOWN
Modifier and Type | Method and Description |
---|---|
static Record |
createRecord(String name,
String address,
Class itf)
Same as
createRecord(String, String, Class, JsonObject) but without metadata. |
static Record |
createRecord(String name,
String address,
Class itf,
JsonObject metadata)
Sugar method to creates a record for this type.
|
static Record |
createRecord(String name,
String address,
String itf,
JsonObject metadata)
Sugar method to creates a record for this type.
|
static <T> void |
getProxy(ServiceDiscovery discovery,
Class<T> itf,
Handler<AsyncResult<T>> resultHandler)
Lookup for a service record and if found, retrieve it and return the service object (used to consume the service).
|
static <T> void |
getProxy(ServiceDiscovery discovery,
JsonObject filter,
Handler<AsyncResult<T>> resultHandler)
Lookup for a service record and if found, retrieve it and return the service object (used to consume the service).
|
static <T> void |
getProxy(ServiceDiscovery discovery,
JsonObject filter,
String proxyClass,
Handler<AsyncResult<T>> resultHandler) |
static <T> void |
getProxy(ServiceDiscovery discovery,
String itf,
Handler<AsyncResult<T>> resultHandler)
Lookup for a service record and if found, retrieve it and return the service object (used to consume the service).
|
static <T> void |
getProxy(ServiceDiscovery discovery,
String serviceInterface,
String proxyInterface,
Handler<AsyncResult<T>> resultHandler) |
get, name
static final String TYPE
static Record createRecord(String name, String address, Class itf, JsonObject metadata)
The java interface is added to the metadata in the `service.interface` key.
name
- the name of the service.address
- the event bus address on which the service availableitf
- the Java interfacemetadata
- the metadatastatic Record createRecord(String name, String address, String itf, JsonObject metadata)
The java interface is added to the metadata in the `service.interface` key.
name
- the name of the service.address
- the event bus address on which the service availableitf
- the Java interface (name)metadata
- the metadatastatic Record createRecord(String name, String address, Class itf)
createRecord(String, String, Class, JsonObject)
but without metadata.name
- the name of the serviceitf
- the Java interfaceaddress
- the event bus address on which the service availablestatic <T> void getProxy(ServiceDiscovery discovery, JsonObject filter, Handler<AsyncResult<T>> resultHandler)
T
- the service interfacediscovery
- the service discovery instancefilter
- the filter to select the serviceresultHandler
- the result handlerstatic <T> void getProxy(ServiceDiscovery discovery, Class<T> itf, Handler<AsyncResult<T>> resultHandler)
T
- the service interfacediscovery
- the service discovery instanceitf
- the service interfaceresultHandler
- the result handlerstatic <T> void getProxy(ServiceDiscovery discovery, String serviceInterface, String proxyInterface, Handler<AsyncResult<T>> resultHandler)
static <T> void getProxy(ServiceDiscovery discovery, JsonObject filter, String proxyClass, Handler<AsyncResult<T>> resultHandler)
static <T> void getProxy(ServiceDiscovery discovery, String itf, Handler<AsyncResult<T>> resultHandler)
T
- the service interfacediscovery
- the service discovery instanceitf
- the service interfaceresultHandler
- the result handlerCopyright © 2016. All rights reserved.