Class ConsistencyTaskResult
- java.lang.Object
-
- org.apache.ignite.internal.dto.IgniteDataTransferObject
-
- org.apache.ignite.internal.management.consistency.ConsistencyTaskResult
-
- All Implemented Interfaces:
Externalizable,Serializable
public class ConsistencyTaskResult extends IgniteDataTransferObject
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConsistencyTaskResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancancelled()voidcancelled(boolean cancelled)booleanfailed()voidfailed(boolean failed)Stringmessage()voidmessage(String res)protected voidreadExternalData(byte protoVer, ObjectInput in)Load object's specific data content.protected voidwriteExternalData(ObjectOutput out)Save object's specific data content.-
Methods inherited from class org.apache.ignite.internal.dto.IgniteDataTransferObject
getProtocolVersion, readExternal, toList, toSet, writeExternal
-
-
-
-
Method Detail
-
writeExternalData
protected void writeExternalData(ObjectOutput out) throws IOException
Save object's specific data content.- Specified by:
writeExternalDatain classIgniteDataTransferObject- 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 classIgniteDataTransferObject- 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.
-
message
public String message()
- Returns:
- Result.
-
message
public void message(String res)
- Parameters:
res- New result.
-
failed
public boolean failed()
- Returns:
- Failed.
-
failed
public void failed(boolean failed)
- Parameters:
failed- Failed.
-
cancelled
public boolean cancelled()
- Returns:
- Cancelled.
-
cancelled
public void cancelled(boolean cancelled)
- Parameters:
cancelled- New cancelled.
-
-