Package com.hazelcast.map.operation

Examples of com.hazelcast.map.operation.PutBackupOperation


        return true;
    }

    public Operation getBackupOperation() {
        RecordInfo replicationInfo = mapService.createRecordInfo(mapContainer, recordStore.getRecord(dataKey));
        return new PutBackupOperation(name, dataKey, dataValue, replicationInfo, true);
    }
View Full Code Here


                return new RemoveOperation();
            }
        };
        constructors[PUT_BACKUP] = new ConstructorFunction<Integer, IdentifiedDataSerializable>() {
            public IdentifiedDataSerializable createNew(Integer arg) {
                return new PutBackupOperation();
            }
        };
        constructors[REMOVE_BACKUP] = new ConstructorFunction<Integer, IdentifiedDataSerializable>() {
            public IdentifiedDataSerializable createNew(Integer arg) {
                return new RemoveBackupOperation();
View Full Code Here

        final Record record = recordStore.getRecord(dataKey);
        RecordInfo replicationInfo = null;
        if (record != null) {
            replicationInfo = Records.buildRecordInfo(record);
        }
        return new PutBackupOperation(name, dataKey, dataValue, replicationInfo, true);
    }
View Full Code Here

TOP

Related Classes of com.hazelcast.map.operation.PutBackupOperation

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.