Java io.vertx.core.shareddata AsyncMap fields, constructors, methods, implement or subclass

Example usage for Java io.vertx.core.shareddata AsyncMap fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for io.vertx.core.shareddata AsyncMap.

The text is from its open source code.

Implementation

io.vertx.core.shareddata.AsyncMap has the following implementations.
Click this link to see all its implementation.

Method

voidget(K k, Handler> resultHandler)
Get a value from the map, asynchronously.
voidput(K k, V v, Handler> completionHandler)
Put a value in the map, asynchronously.
Futureput(K k, V v, long ttl)
Same as #put(K,V,long,Handler) but returns a Future of the asynchronous result
voidputIfAbsent(K k, V v, Handler> completionHandler)
Put the entry only if there is no entry with the key already present.
Future<@Nullable V>putIfAbsent(K k, V v, long ttl)
Same as #putIfAbsent(K,V,long,Handler) but returns a Future of the asynchronous result
voidsize(Handler> resultHandler)
Provide the number of entries in the map