Package com.hazelcast.replicatedmap.impl.client

Examples of com.hazelcast.replicatedmap.impl.client.ClientReplicatedMapPutTtlRequest


        }
    }

    @Override
    public V put(K key, V value, long ttl, TimeUnit timeUnit) {
        return invoke(new ClientReplicatedMapPutTtlRequest(getName(), key, value, timeUnit.toMillis(ttl)));
    }
View Full Code Here

TOP

Related Classes of com.hazelcast.replicatedmap.impl.client.ClientReplicatedMapPutTtlRequest

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.