public class ApplyDeltaCommand extends AbstractDataWriteCommand
| Modifier and Type | Field and Description |
|---|---|
static int |
COMMAND_ID |
keyflags| Constructor and Description |
|---|
ApplyDeltaCommand() |
ApplyDeltaCommand(Object deltaAwareValueKey,
Delta delta,
Collection<Object> keys) |
| Modifier and Type | Method and Description |
|---|---|
Object |
acceptVisitor(InvocationContext ctx,
Visitor visitor)
Accept a visitor, and return the result of accepting this visitor.
|
boolean |
equals(Object o) |
byte |
getCommandId()
Used by marshallers to convert this command into an id for streaming.
|
Object[] |
getCompositeKeys() |
Delta |
getDelta() |
Object |
getDeltaAwareKey() |
Object |
getKey() |
Object[] |
getKeys() |
Object[] |
getParameters()
Used by marshallers to stream this command across a network
|
int |
hashCode() |
boolean |
ignoreCommandOnStatus(ComponentStatus status)
Similar to
VisitableCommand.shouldInvoke(InvocationContext) but evaluated by InvocationContextInterceptor. |
boolean |
isConditional()
Certain commands only work based on a certain condition or state of the cache.
|
boolean |
isSuccessful()
Some commands may want to provide information on whether the command was successful or not.
|
Object |
perform(InvocationContext ctx)
Performs an application of delta on a specified entry
|
void |
setParameters(int commandId,
Object[] args)
Used by the
CommandsFactory to create a command from raw data read off a stream. |
String |
toString() |
getAffectedKeys, isReturnValueExpectedsetKey, shouldInvokegetFlags, hasFlag, setFlagsclone, finalize, getClass, notify, notifyAll, wait, wait, waitgetFlags, hasFlag, setFlagsshouldInvokepublic static final int COMMAND_ID
public ApplyDeltaCommand()
public ApplyDeltaCommand(Object deltaAwareValueKey, Delta delta, Collection<Object> keys)
public Object getDeltaAwareKey()
public Delta getDelta()
public Object getKey()
getKey in interface DataCommandgetKey in class AbstractDataCommandpublic Object perform(InvocationContext ctx) throws Throwable
ctx - invocation contextThrowable - in the event of problems.public byte getCommandId()
ReplicableCommandpublic String toString()
toString in class AbstractDataCommandpublic Object[] getParameters()
ReplicableCommandgetParameters in interface ReplicableCommandgetParameters in class AbstractDataCommandpublic void setParameters(int commandId,
Object[] args)
ReplicableCommandCommandsFactory to create a command from raw data read off a stream.setParameters in interface ReplicableCommandsetParameters in class AbstractDataCommandcommandId - command id to set. This is usually unused but *could* be used in the event of a command having
multiple IDs, such as PutKeyValueCommand.args - object array of argspublic Object acceptVisitor(InvocationContext ctx, Visitor visitor) throws Throwable
VisitableCommandctx - invocation contextvisitor - visitor to acceptThrowable - in the event of problemspublic Object[] getKeys()
public Object[] getCompositeKeys()
public boolean ignoreCommandOnStatus(ComponentStatus status)
VisitableCommandVisitableCommand.shouldInvoke(InvocationContext) but evaluated by InvocationContextInterceptor.
Commands can opt to be discarded in case the cache status is not suited (as InvalidateCommand)ignoreCommandOnStatus in interface VisitableCommandignoreCommandOnStatus in class AbstractDataCommandpublic boolean equals(Object o)
equals in class AbstractDataCommandpublic int hashCode()
hashCode in class AbstractDataCommandpublic boolean isSuccessful()
WriteCommandpublic boolean isConditional()
WriteCommandConcurrentMap.putIfAbsent(Object, Object) only does anything if a condition is met, i.e., the entry in
question is not already present. This method tests whether the command in question is conditional or not.Copyright © 2012 JBoss by Red Hat. All Rights Reserved.