Package io.vertx.reactivex.ext.consul
Class Watch<T>
- java.lang.Object
-
- io.vertx.reactivex.ext.consul.Watch<T>
-
public class Watch<T> extends Object
Watches are a way of specifying a view of data (e.g. list of nodes, KV pairs, health checks) which is monitored for updates. When an update is detected, anHandler
withWatchResult
is invoked. All errors, exceptjava.util.concurrent.TimeoutException
, will be handled, with resubscribing with a progressive delay. All timeout errors will be ignored, with resubscribing without any delay. As an example, you could watch the status of health checks and notify when a check is critical.NOTE: This class has been automatically generated from the
original
non RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<Watch>
__TYPE_ARG
io.vertx.lang.rx.TypeArg<T>
__typeArg_0
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
static Watch<EventList>
events(String event, Vertx vertx)
CreatesWatch
to monitoring the custom user events.static Watch<EventList>
events(String event, Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring the custom user events.Watch
getDelegate()
int
hashCode()
static Watch<KeyValue>
key(String key, Vertx vertx)
CreatesWatch
to monitoring a specific key in the KV store.static Watch<KeyValue>
key(String key, Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring a specific key in the KV store.static Watch<KeyValueList>
keyPrefix(String keyPrefix, Vertx vertx)
CreatesWatch
to monitoring a prefix of keys in the KV store.static Watch<KeyValueList>
keyPrefix(String keyPrefix, Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring a prefix of keys in the KV store.static <T> Watch<T>
newInstance(Watch arg)
static <T> Watch<T>
newInstance(Watch arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T)
static Watch<CheckList>
nodeHealthChecks(String node, CheckQueryOptions opt, Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring the health checks of the nodes.static Watch<NodeList>
nodes(Vertx vertx)
CreatesWatch
to monitoring the list of available nodes.static Watch<NodeList>
nodes(Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring the list of available nodes.static Watch<ServiceEntryList>
service(String service, Vertx vertx)
CreatesWatch
to monitoring the nodes providing the service.static Watch<ServiceEntryList>
service(String service, Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring the nodes providing the service.static Watch<CheckList>
serviceHealthChecks(String service, CheckQueryOptions checkQueryOptions, Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring the health checks of the nodes.static Watch<ServiceList>
services(Vertx vertx)
CreatesWatch
to monitoring the list of available services.static Watch<ServiceList>
services(Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring the list of available services.Watch<T>
setHandler(Handler<WatchResult<T>> handler)
Set the result handler.Watch<T>
start()
Start thisWatch
void
stop()
Stop the watch and release its resourcesString
toString()
-
-
-
Method Detail
-
getDelegate
public Watch getDelegate()
-
key
public static Watch<KeyValue> key(String key, Vertx vertx)
CreatesWatch
to monitoring a specific key in the KV store. The underlying Consul client will be created with default options. This maps to the /v1/kv/ API internally.- Parameters:
key
- the keyvertx
- theVertx
instance- Returns:
- the
Watch
instance
-
key
public static Watch<KeyValue> key(String key, Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring a specific key in the KV store. This maps to the /v1/kv/ API internally.- Parameters:
key
- the keyvertx
- theVertx
instanceoptions
- the options to create underlying Consul client- Returns:
- the
Watch
instance
-
keyPrefix
public static Watch<KeyValueList> keyPrefix(String keyPrefix, Vertx vertx)
CreatesWatch
to monitoring a prefix of keys in the KV store. The underlying Consul client will be created with default options. This maps to the /v1/kv/ API internally.- Parameters:
keyPrefix
- the keyvertx
- theVertx
instance- Returns:
- the
Watch
instance
-
keyPrefix
public static Watch<KeyValueList> keyPrefix(String keyPrefix, Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring a prefix of keys in the KV store. This maps to the /v1/kv/ API internally.- Parameters:
keyPrefix
- the keyvertx
- theVertx
instanceoptions
- the options to create underlying Consul client- Returns:
- the
Watch
instance
-
services
public static Watch<ServiceList> services(Vertx vertx)
CreatesWatch
to monitoring the list of available services. The underlying Consul client will be created with default options. This maps to the /v1/catalog/services API internally.- Parameters:
vertx
- theVertx
instance- Returns:
- the
Watch
instance
-
services
public static Watch<ServiceList> services(Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring the list of available services. This maps to the /v1/catalog/services API internally.- Parameters:
vertx
- theVertx
instanceoptions
- the options to create underlying Consul client- Returns:
- the
Watch
instance
-
service
public static Watch<ServiceEntryList> service(String service, Vertx vertx)
CreatesWatch
to monitoring the nodes providing the service. Nodes will be sorted by distance from the consul agent. The underlying Consul client will be created with default options. This maps to the /v1/health/service/<service> API internally.- Parameters:
service
- the service namevertx
- theVertx
instance- Returns:
- the
Watch
instance
-
service
public static Watch<ServiceEntryList> service(String service, Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring the nodes providing the service. Nodes will be sorted by distance from the consul agent. This maps to the /v1/health/service/<service> API internally.- Parameters:
service
- the service namevertx
- theVertx
instanceoptions
- the options to create underlying Consul client- Returns:
- the
Watch
instance
-
events
public static Watch<EventList> events(String event, Vertx vertx)
CreatesWatch
to monitoring the custom user events. The underlying Consul client will be created with default options. This maps to the /v1/event/list API internally.- Parameters:
event
- the event namevertx
- theVertx
instance- Returns:
- the
Watch
instance
-
events
public static Watch<EventList> events(String event, Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring the custom user events. This maps to the /v1/event/list API internally.- Parameters:
event
- the event namevertx
- theVertx
instanceoptions
- the options to create underlying Consul client- Returns:
- the
Watch
instance
-
nodes
public static Watch<NodeList> nodes(Vertx vertx)
CreatesWatch
to monitoring the list of available nodes. The underlying Consul client will be created with default options. This maps to the /v1/catalog/nodes API internally.- Parameters:
vertx
- theVertx
instance- Returns:
- the
Watch
instance
-
nodes
public static Watch<NodeList> nodes(Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring the list of available nodes. This maps to the /v1/catalog/nodes API internally.- Parameters:
vertx
- theVertx
instanceoptions
- the options to create underlying Consul client- Returns:
- the
Watch
instance
-
nodeHealthChecks
public static Watch<CheckList> nodeHealthChecks(String node, CheckQueryOptions opt, Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring the health checks of the nodes.- Parameters:
node
- node name or IDopt
- options like namespace, datacenter and filtervertx
- theVertx
instanceoptions
- the options to create underlying Consul client- Returns:
- the
Watch
instance
-
serviceHealthChecks
public static Watch<CheckList> serviceHealthChecks(String service, CheckQueryOptions checkQueryOptions, Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring the health checks of the nodes.- Parameters:
service
- the service namecheckQueryOptions
- options used to request checksvertx
- theVertx
instanceoptions
- the options to create underlying Consul client- Returns:
- the
Watch
instance
-
setHandler
public Watch<T> setHandler(Handler<WatchResult<T>> handler)
Set the result handler. As data is changed, the handler will be called with the result.- Parameters:
handler
- the result handler- Returns:
- reference to this, for fluency
-
stop
public void stop()
Stop the watch and release its resources
-
-