Class ReadOnlyManyCommand<K,V,R>
java.lang.Object
org.infinispan.commands.AbstractFlagAffectedCommand
org.infinispan.commands.AbstractTopologyAffectedCommand
org.infinispan.commands.functional.ReadOnlyManyCommand<K,V,R>
- All Implemented Interfaces:
FlagAffectedCommand,LocalCommand,ReplicableCommand,TopologyAffectedCommand,VisitableCommand
- Direct Known Subclasses:
TxReadOnlyManyCommand
public class ReadOnlyManyCommand<K,V,R>
extends AbstractTopologyAffectedCommand
implements LocalCommand
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.infinispan.commands.VisitableCommand
VisitableCommand.LoadType -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intprotected Function<EntryView.ReadEntryView<K,V>, R> protected DataConversionprotected Collection<?>protected Paramsprotected DataConversion -
Constructor Summary
ConstructorsConstructorDescriptionReadOnlyManyCommand(Collection<?> keys, Function<EntryView.ReadEntryView<K, V>, R> f, Params params, DataConversion keyDataConversion, DataConversion valueDataConversion) -
Method Summary
Modifier and TypeMethodDescriptionacceptVisitor(InvocationContext ctx, Visitor visitor) Accept a visitor, and return the result of accepting this visitor.byteUsed by marshallers to convert this command into an id for streaming.Collection<?>getKeys()voidinit(ComponentRegistry componentRegistry) booleanIf true, a return value will be provided when performed remotely.loadType()voidreadFrom(ObjectInput input) Reads this instance from the stream written byReplicableCommand.writeTo(ObjectOutput).voidsetKeys(Collection<?> keys) toString()final ReadOnlyManyCommand<K,V, R> withKeys(Collection<?> keys) voidwriteTo(ObjectOutput output) Writes this instance to theObjectOutput.Methods inherited from class org.infinispan.commands.AbstractTopologyAffectedCommand
getTopologyId, setTopologyIdMethods inherited from class org.infinispan.commands.AbstractFlagAffectedCommand
getFlagsBitSet, hasSameFlags, printFlags, setFlagsBitSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.infinispan.commands.FlagAffectedCommand
addFlag, addFlags, addFlags, getFlags, hasAllFlags, hasAnyFlag, hasFlag, setFlagsMethods inherited from interface org.infinispan.commands.ReplicableCommand
canBlock, invoke, invokeAsync, isSuccessful, logThrowable, setOrigin
-
Field Details
-
COMMAND_ID
public static final int COMMAND_ID- See Also:
-
keys
-
f
-
params
-
keyDataConversion
-
valueDataConversion
-
-
Constructor Details
-
ReadOnlyManyCommand
public ReadOnlyManyCommand(Collection<?> keys, Function<EntryView.ReadEntryView<K, V>, R> f, Params params, DataConversion keyDataConversion, DataConversion valueDataConversion) -
ReadOnlyManyCommand
public ReadOnlyManyCommand() -
ReadOnlyManyCommand
-
-
Method Details
-
init
- Specified by:
initin interfaceVisitableCommand
-
getKeys
-
setKeys
-
withKeys
-
getCommandId
public byte getCommandId()Description copied from interface:ReplicableCommandUsed by marshallers to convert this command into an id for streaming.- Specified by:
getCommandIdin interfaceReplicableCommand- Returns:
- the method id of this command. This is compatible with pre-2.2.0 MethodCall ids.
-
isReturnValueExpected
public boolean isReturnValueExpected()Description copied from interface:ReplicableCommandIf true, a return value will be provided when performed remotely. Otherwise, a remoteResponseGeneratormay choose to simply return null to save on marshalling costs.- Specified by:
isReturnValueExpectedin interfaceReplicableCommand- Returns:
- true or false
-
writeTo
Description copied from interface:ReplicableCommandWrites this instance to theObjectOutput.- Specified by:
writeToin interfaceReplicableCommand- Parameters:
output- the stream.- Throws:
IOException- if an error occurred during the I/O.
-
readFrom
Description copied from interface:ReplicableCommandReads this instance from the stream written byReplicableCommand.writeTo(ObjectOutput).- Specified by:
readFromin interfaceReplicableCommand- Parameters:
input- the stream to read.- Throws:
IOException- if an error occurred during the I/O.ClassNotFoundException- if it tries to load an undefined class.
-
acceptVisitor
Description copied from interface:VisitableCommandAccept a visitor, and return the result of accepting this visitor.- Specified by:
acceptVisitorin interfaceVisitableCommand- Parameters:
ctx- invocation contextvisitor- visitor to accept- Returns:
- arbitrary return value
- Throws:
Throwable- in the event of problems
-
loadType
- Specified by:
loadTypein interfaceVisitableCommand- Returns:
- Nodes on which the command needs to read the previous values of the keys it acts on.
-
getKeyDataConversion
-
getValueDataConversion
-
getParams
-
getFunction
-
toString
-