Interface ServiceType
- All Known Subinterfaces:
EventBusService, HttpEndpoint, MessageSource, MongoDataSource, RedisDataSource
public interface ServiceType
Represents a service type.
A service type is for example: `http-endpoint`, `data source`, `message source`. It defines what kind of resources is accessed through the service. For example, in the case of a `http endpoint`, the service object is a HTTP client. For `message source` it would a a consumer on which you set a handler receiving the message.
You can define your own service type by implementing this interface and configure the SPI file (META-INF/services/io.vertx.servicediscovery.spi.ServiceType) with your own implementation.
- Author:
- Clement Escoffier
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionget(Vertx vertx, ServiceDiscovery discovery, Record record, JsonObject configuration) Gets the `service` for the given record.name()
-
Field Details
-
UNKNOWN
-
-
Method Details
-
name
String name()- Returns:
- the name of the type.
-
get
ServiceReference get(Vertx vertx, ServiceDiscovery discovery, Record record, JsonObject configuration) Gets the `service` for the given record. The record's type must match the current type. From the returnedServiceReference, the consumer can start using the service and release it.- Parameters:
vertx- the vert.x instancediscovery- the discovery instance requesting the referencerecord- the recordconfiguration- some optional configuration, maybe benullor empty- Returns:
- the retrieved
ServiceReference
-