Package | Description |
---|---|
io.vertx.ext.consul | |
io.vertx.reactivex.ext.consul | |
io.vertx.rxjava.ext.consul |
Modifier and Type | Method and Description |
---|---|
BlockingQueryOptions |
ServiceQueryOptions.getBlockingOptions()
Get options for blocking query
|
BlockingQueryOptions |
EventListOptions.getBlockingOptions()
Get options for blocking query
|
BlockingQueryOptions |
CheckQueryOptions.getBlockingOptions()
Get options for blocking query
|
BlockingQueryOptions |
NodeQueryOptions.getBlockingOptions()
Get options for blocking query
|
BlockingQueryOptions |
BlockingQueryOptions.setIndex(long index)
Set index indicating that the client wishes to wait for any changes subsequent to that index.
|
BlockingQueryOptions |
BlockingQueryOptions.setWait(String wait)
Specifying a maximum duration for the blocking request.
|
Modifier and Type | Method and Description |
---|---|
ConsulClient |
ConsulClient.catalogNodeServicesWithOptions(String node,
BlockingQueryOptions options,
Handler<AsyncResult<ServiceList>> resultHandler)
Returns the node's registered services
This is blocking query unlike
ConsulClient.catalogNodeServices(String, Handler) |
ConsulClient |
ConsulClient.catalogServicesWithOptions(BlockingQueryOptions options,
Handler<AsyncResult<ServiceList>> resultHandler)
Returns the services registered in a datacenter
This is blocking query unlike
ConsulClient.catalogServices(Handler) |
ConsulClient |
ConsulClient.coordinateNodesWithOptions(BlockingQueryOptions options,
Handler<AsyncResult<CoordinateList>> resultHandler)
Returns the LAN network coordinates for all nodes in a given DC
This is blocking query unlike
ConsulClient.coordinateNodes(Handler) |
static void |
BlockingQueryOptionsConverter.fromJson(Iterable<Map.Entry<String,Object>> json,
BlockingQueryOptions obj) |
ConsulClient |
ConsulClient.getKeysWithOptions(String keyPrefix,
BlockingQueryOptions options,
Handler<AsyncResult<List<String>>> resultHandler)
Returns the list of keys that corresponding to the specified key prefix.
|
ConsulClient |
ConsulClient.getValuesWithOptions(String keyPrefix,
BlockingQueryOptions options,
Handler<AsyncResult<KeyValueList>> resultHandler)
Returns the list of key/value pairs that corresponding to the specified key prefix.
|
ConsulClient |
ConsulClient.getValueWithOptions(String key,
BlockingQueryOptions options,
Handler<AsyncResult<KeyValue>> resultHandler)
Returns key/value pair that corresponding to the specified key.
|
ConsulClient |
ConsulClient.infoSessionWithOptions(String id,
BlockingQueryOptions options,
Handler<AsyncResult<Session>> resultHandler)
Returns the requested session information
This is blocking query unlike
ConsulClient.infoSession(String, Handler) |
ConsulClient |
ConsulClient.listNodeSessionsWithOptions(String nodeId,
BlockingQueryOptions options,
Handler<AsyncResult<SessionList>> resultHandler)
Returns the active sessions for a given node
This is blocking query unlike
ConsulClient.listNodeSessions(String, Handler) |
ConsulClient |
ConsulClient.listSessionsWithOptions(BlockingQueryOptions options,
Handler<AsyncResult<SessionList>> resultHandler)
Returns the active sessions
This is blocking query unlike
ConsulClient.listSessions(Handler) |
ServiceQueryOptions |
ServiceQueryOptions.setBlockingOptions(BlockingQueryOptions options)
Set options for blocking query
|
EventListOptions |
EventListOptions.setBlockingOptions(BlockingQueryOptions options)
Set options for blocking query
|
CheckQueryOptions |
CheckQueryOptions.setBlockingOptions(BlockingQueryOptions options)
Set options for blocking query
|
NodeQueryOptions |
NodeQueryOptions.setBlockingOptions(BlockingQueryOptions options)
Set options for blocking query
|
static void |
BlockingQueryOptionsConverter.toJson(BlockingQueryOptions obj,
JsonObject json) |
static void |
BlockingQueryOptionsConverter.toJson(BlockingQueryOptions obj,
Map<String,Object> json) |
Constructor and Description |
---|
BlockingQueryOptions(BlockingQueryOptions options)
Copy constructor
|
Copyright © 2018 Eclipse. All rights reserved.