Package com.hazelcast.map

Examples of com.hazelcast.map.MapService.toData()


    public ICompletableFuture submitToKey(K key, EntryProcessor entryProcessor) {
        if (key == null) {
            throw new NullPointerException(NULL_KEY_IS_NOT_ALLOWED);
        }
        MapService service = getService();
        Data keyData = service.toData(key, partitionStrategy);
        ICompletableFuture f = executeOnKeyInternal(keyData,entryProcessor,null);
        return new DelegatingFuture(f,service.getSerializationService());
    }

    protected Object invoke(Operation operation, int partitionId) throws Throwable {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.