com.hazelcast.concurrent.atomiclong.operations
Class AbstractAlterOperation

java.lang.Object
  extended by com.hazelcast.spi.Operation
      extended by com.hazelcast.concurrent.atomiclong.operations.AtomicLongBaseOperation
          extended by com.hazelcast.concurrent.atomiclong.operations.AtomicLongBackupAwareOperation
              extended by com.hazelcast.concurrent.atomiclong.operations.AbstractAlterOperation
All Implemented Interfaces:
DataSerializable, IdentifiedDataSerializable, BackupAwareOperation, RemotePropagatable<Operation>, PartitionAwareOperation
Direct Known Subclasses:
AlterAndGetOperation, AlterOperation, GetAndAlterOperation

public abstract class AbstractAlterOperation
extends AtomicLongBackupAwareOperation


Field Summary
protected  long backup
           
protected  IFunction<Long,Long> function
           
protected  long response
           
 
Fields inherited from class com.hazelcast.concurrent.atomiclong.operations.AtomicLongBackupAwareOperation
shouldBackup
 
Fields inherited from class com.hazelcast.concurrent.atomiclong.operations.AtomicLongBaseOperation
name
 
Constructor Summary
AbstractAlterOperation()
           
AbstractAlterOperation(String name, IFunction<Long,Long> function)
           
 
Method Summary
 Operation getBackupOperation()
          Creates the BackupOperation responsible for making the backup.
 Object getResponse()
           
protected  void readInternal(ObjectDataInput in)
           
protected  void writeInternal(ObjectDataOutput out)
           
 
Methods inherited from class com.hazelcast.concurrent.atomiclong.operations.AtomicLongBackupAwareOperation
getAsyncBackupCount, getSyncBackupCount, shouldBackup
 
Methods inherited from class com.hazelcast.concurrent.atomiclong.operations.AtomicLongBaseOperation
afterRun, beforeRun, getFactoryId, getNumber, returnsResponse
 
Methods inherited from class com.hazelcast.spi.Operation
getCallerAddress, getCallerUuid, getCallId, getCallTimeout, getConnection, getExecutorName, getInvocationTime, getLogger, getNodeEngine, getPartitionId, getReplicaIndex, getResponseHandler, getService, getServiceName, getWaitTimeout, isUrgent, logError, onException, readData, run, setCallerUuid, setExecutorName, setNodeEngine, setPartitionId, setReplicaIndex, setResponseHandler, setService, setServiceName, setValidateTarget, setWaitTimeout, toString, validatesTarget, writeData
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface com.hazelcast.spi.PartitionAwareOperation
getPartitionId
 
Methods inherited from interface com.hazelcast.nio.serialization.IdentifiedDataSerializable
getId
 
Methods inherited from interface com.hazelcast.nio.serialization.DataSerializable
readData, writeData
 

Field Detail

function

protected IFunction<Long,Long> function

response

protected long response

backup

protected long backup
Constructor Detail

AbstractAlterOperation

public AbstractAlterOperation()

AbstractAlterOperation

public AbstractAlterOperation(String name,
                              IFunction<Long,Long> function)
Method Detail

getResponse

public Object getResponse()
Overrides:
getResponse in class AtomicLongBaseOperation

writeInternal

protected void writeInternal(ObjectDataOutput out)
                      throws IOException
Overrides:
writeInternal in class AtomicLongBaseOperation
Throws:
IOException

readInternal

protected void readInternal(ObjectDataInput in)
                     throws IOException
Overrides:
readInternal in class AtomicLongBaseOperation
Throws:
IOException

getBackupOperation

public Operation getBackupOperation()
Description copied from interface: BackupAwareOperation
Creates the BackupOperation responsible for making the backup.

Returns:
the created BackupOperation.


Copyright © 2015 Hazelcast, Inc.. All Rights Reserved.