Class ServiceExporter
- java.lang.Object
-
- io.vertx.rxjava.servicediscovery.spi.ServiceExporter
-
public class ServiceExporter extends Object
The service exporter allows integrate other discovery technologies with the Vert.x service discovery. It maps entries from another technology to a and maps to a publication in this other technology. The exporter is one side of a service discovery bridge. NOTE: This class has been automatically generated from theoriginalnon RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<ServiceExporter>__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description ServiceExporter(io.vertx.servicediscovery.spi.ServiceExporter delegate)ServiceExporter(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose(io.vertx.core.Handler<Void> closeHandler)Close the exporterbooleanequals(Object o)io.vertx.servicediscovery.spi.ServiceExportergetDelegate()inthashCode()voidinit(Vertx vertx, ServicePublisher publisher, io.vertx.core.json.JsonObject configuration, Promise<Void> future)Starts the exporter.static ServiceExporternewInstance(io.vertx.servicediscovery.spi.ServiceExporter arg)voidonPublish(io.vertx.servicediscovery.Record record)Notify a new record has been published, the record's registration can be used to uniquely identify the recordvoidonUnpublish(String id)Notify an existing record has been removedvoidonUpdate(io.vertx.servicediscovery.Record record)Notify an existing record has been updated, the record's registration can be used to uniquely identify the recordStringtoString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<ServiceExporter> __TYPE_ARG
-
-
Constructor Detail
-
ServiceExporter
public ServiceExporter(io.vertx.servicediscovery.spi.ServiceExporter delegate)
-
ServiceExporter
public ServiceExporter(Object delegate)
-
-
Method Detail
-
getDelegate
public io.vertx.servicediscovery.spi.ServiceExporter getDelegate()
-
init
public void init(Vertx vertx, ServicePublisher publisher, io.vertx.core.json.JsonObject configuration, Promise<Void> future)
Starts the exporter.- Parameters:
vertx- the vertx instancepublisher- the service discovery instanceconfiguration- the bridge configuration if anyfuture- a future on which the bridge must report the completion of the starting
-
onPublish
public void onPublish(io.vertx.servicediscovery.Record record)
Notify a new record has been published, the record's registration can be used to uniquely identify the record- Parameters:
record- the record
-
onUpdate
public void onUpdate(io.vertx.servicediscovery.Record record)
Notify an existing record has been updated, the record's registration can be used to uniquely identify the record- Parameters:
record- the record
-
onUnpublish
public void onUnpublish(String id)
Notify an existing record has been removed- Parameters:
id- the record registration id
-
close
public void close(io.vertx.core.Handler<Void> closeHandler)
Close the exporter- Parameters:
closeHandler- the handle to be notified when exporter is closed, may benull
-
newInstance
public static ServiceExporter newInstance(io.vertx.servicediscovery.spi.ServiceExporter arg)
-
-