Uses of Class
io.vertx.ext.consul.KeyValue
-
Packages that use KeyValue Package Description io.vertx.ext.consul io.vertx.reactivex.ext.consul io.vertx.rxjava3.ext.consul -
-
Uses of KeyValue in io.vertx.ext.consul
Methods in io.vertx.ext.consul that return KeyValue Modifier and Type Method Description KeyValue
KeyValue. setCreateIndex(long createIndex)
Set the internal index value that represents when the entry was created.KeyValue
KeyValue. setFlags(long flags)
Set the flags attached to this entry.KeyValue
KeyValue. setKey(String key)
Set the keyKeyValue
KeyValue. setLockIndex(long lockIndex)
Set the number of times this key has successfully been acquired in a lock.KeyValue
KeyValue. setModifyIndex(long modifyIndex)
Set the last index that modified this key.KeyValue
KeyValue. setSession(String session)
Set the session that owns the lockKeyValue
KeyValue. setValue(String value)
Set the valueMethods in io.vertx.ext.consul that return types with arguments of type KeyValue Modifier and Type Method Description List<KeyValue>
KeyValueList. getList()
Get list of key/value pairsFuture<KeyValue>
ConsulClient. getValue(String key)
Returns key/value pair that corresponding to the specified key.Future<KeyValue>
ConsulClient. getValueWithOptions(String key, BlockingQueryOptions options)
Returns key/value pair that corresponding to the specified key.static Watch<KeyValue>
Watch. key(String key, Vertx vertx)
CreatesWatch
to monitoring a specific key in the KV store.static Watch<KeyValue>
Watch. key(String key, Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring a specific key in the KV store.Method parameters in io.vertx.ext.consul with type arguments of type KeyValue Modifier and Type Method Description KeyValueList
KeyValueList. setList(List<KeyValue> list)
Set list of key/value pairsConstructors in io.vertx.ext.consul with parameters of type KeyValue Constructor Description KeyValue(KeyValue other)
Copy constructor -
Uses of KeyValue in io.vertx.reactivex.ext.consul
Methods in io.vertx.reactivex.ext.consul that return types with arguments of type KeyValue Modifier and Type Method Description Future<KeyValue>
ConsulClient. getValue(String key)
Returns key/value pair that corresponding to the specified key.Future<KeyValue>
ConsulClient. getValueWithOptions(String key, BlockingQueryOptions options)
Returns key/value pair that corresponding to the specified key.static Watch<KeyValue>
Watch. key(String key, Vertx vertx)
CreatesWatch
to monitoring a specific key in the KV store.static Watch<KeyValue>
Watch. key(String key, Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring a specific key in the KV store.Single<KeyValue>
ConsulClient. rxGetValue(String key)
Returns key/value pair that corresponding to the specified key.Single<KeyValue>
ConsulClient. rxGetValueWithOptions(String key, BlockingQueryOptions options)
Returns key/value pair that corresponding to the specified key. -
Uses of KeyValue in io.vertx.rxjava3.ext.consul
Methods in io.vertx.rxjava3.ext.consul that return types with arguments of type KeyValue Modifier and Type Method Description Single<KeyValue>
ConsulClient. getValue(String key)
Returns key/value pair that corresponding to the specified key.Single<KeyValue>
ConsulClient. getValueWithOptions(String key, BlockingQueryOptions options)
Returns key/value pair that corresponding to the specified key.static Watch<KeyValue>
Watch. key(String key, Vertx vertx)
CreatesWatch
to monitoring a specific key in the KV store.static Watch<KeyValue>
Watch. key(String key, Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring a specific key in the KV store.Single<KeyValue>
ConsulClient. rxGetValue(String key)
Returns key/value pair that corresponding to the specified key.Single<KeyValue>
ConsulClient. rxGetValueWithOptions(String key, BlockingQueryOptions options)
Returns key/value pair that corresponding to the specified key.
-