Search in sources :

Example 1 with AtomicLongAddAndGetCodec

use of com.hazelcast.client.impl.protocol.codec.AtomicLongAddAndGetCodec in project hazelcast by hazelcast.

the class AtomicLongProxy method addAndGetAsync.

@Override
public InternalCompletableFuture<Long> addAndGetAsync(long delta) {
    ClientMessage request = AtomicLongAddAndGetCodec.encodeRequest(groupId, objectName, delta);
    ClientInvocationFuture future = new ClientInvocation(getClient(), request, name).invoke();
    return new ClientDelegatingFuture<>(future, getSerializationService(), AtomicLongAddAndGetCodec::decodeResponse);
}
Also used : ClientDelegatingFuture(com.hazelcast.client.impl.ClientDelegatingFuture) AtomicLongAddAndGetCodec(com.hazelcast.client.impl.protocol.codec.AtomicLongAddAndGetCodec) ClientInvocation(com.hazelcast.client.impl.spi.impl.ClientInvocation) ClientMessage(com.hazelcast.client.impl.protocol.ClientMessage) ClientInvocationFuture(com.hazelcast.client.impl.spi.impl.ClientInvocationFuture)

Aggregations

ClientDelegatingFuture (com.hazelcast.client.impl.ClientDelegatingFuture)1 ClientMessage (com.hazelcast.client.impl.protocol.ClientMessage)1 AtomicLongAddAndGetCodec (com.hazelcast.client.impl.protocol.codec.AtomicLongAddAndGetCodec)1 ClientInvocation (com.hazelcast.client.impl.spi.impl.ClientInvocation)1 ClientInvocationFuture (com.hazelcast.client.impl.spi.impl.ClientInvocationFuture)1