Search in sources :

Example 1 with AtomicRefGetCodec

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

the class AtomicRefProxy method getAsync.

@Override
public InternalCompletableFuture<T> getAsync() {
    ClientMessage request = AtomicRefGetCodec.encodeRequest(groupId, objectName);
    ClientInvocationFuture future = new ClientInvocation(getClient(), request, name).invoke();
    return new ClientDelegatingFuture<>(future, getSerializationService(), AtomicRefGetCodec::decodeResponse);
}
Also used : ClientDelegatingFuture(com.hazelcast.client.impl.ClientDelegatingFuture) AtomicRefGetCodec(com.hazelcast.client.impl.protocol.codec.AtomicRefGetCodec) 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 AtomicRefGetCodec (com.hazelcast.client.impl.protocol.codec.AtomicRefGetCodec)1 ClientInvocation (com.hazelcast.client.impl.spi.impl.ClientInvocation)1 ClientInvocationFuture (com.hazelcast.client.impl.spi.impl.ClientInvocationFuture)1