Package org.apache.ignite.internal.visor
Class VisorTaskArgument<A>
- java.lang.Object
-
- org.apache.ignite.internal.visor.VisorDataTransferObject
-
- org.apache.ignite.internal.visor.VisorTaskArgument<A>
-
- All Implemented Interfaces:
Externalizable,Serializable
public class VisorTaskArgument<A> extends VisorDataTransferObject
Visor tasks argument.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description VisorTaskArgument()Default constructor.VisorTaskArgument(Collection<UUID> nodes, boolean debug)Create Visor task argument with nodes, but without actual argument.VisorTaskArgument(Collection<UUID> nodes, A arg, boolean debug)Create Visor task argument.VisorTaskArgument(UUID node, boolean debug)Create Visor task argument with nodes, but without actual argument.VisorTaskArgument(UUID node, A arg, boolean debug)Create Visor task argument.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AgetArgument()List<UUID>getNodes()booleanisDebug()protected voidreadExternalData(byte protoVer, ObjectInput in)Load object's specific data content.StringtoString()protected voidwriteExternalData(ObjectOutput out)Save object's specific data content.-
Methods inherited from class org.apache.ignite.internal.visor.VisorDataTransferObject
getProtocolVersion, readExternal, toList, toSet, writeExternal
-
-
-
-
Constructor Detail
-
VisorTaskArgument
public VisorTaskArgument()
Default constructor.
-
VisorTaskArgument
public VisorTaskArgument(Collection<UUID> nodes, A arg, boolean debug)
Create Visor task argument.- Parameters:
nodes- Node IDs task should be mapped to.arg- Task argument.debug- Debug flag.
-
VisorTaskArgument
public VisorTaskArgument(Collection<UUID> nodes, boolean debug)
Create Visor task argument with nodes, but without actual argument.- Parameters:
nodes- Node IDs task should be mapped to.debug- Debug flag.
-
VisorTaskArgument
public VisorTaskArgument(UUID node, A arg, boolean debug)
Create Visor task argument.- Parameters:
node- Node ID task should be mapped to.arg- Task argument.debug- Debug flag.
-
VisorTaskArgument
public VisorTaskArgument(UUID node, boolean debug)
Create Visor task argument with nodes, but without actual argument.- Parameters:
node- Node ID task should be mapped to.debug- Debug flag.
-
-
Method Detail
-
getArgument
public A getArgument()
- Returns:
- Task argument.
-
isDebug
public boolean isDebug()
- Returns:
- Debug flag.
-
writeExternalData
protected void writeExternalData(ObjectOutput out) throws IOException
Save object's specific data content.- Specified by:
writeExternalDatain classVisorDataTransferObject- Parameters:
out- Output object to write data content.- Throws:
IOException- If I/O errors occur.
-
readExternalData
protected void readExternalData(byte protoVer, ObjectInput in) throws IOException, ClassNotFoundExceptionLoad object's specific data content.- Specified by:
readExternalDatain classVisorDataTransferObject- Parameters:
protoVer- Input object version.in- Input object to load data content.- Throws:
IOException- If I/O errors occur.ClassNotFoundException- If the class for an object being restored cannot be found.
-
-