Package alluxio.stress.worker
Class IOTaskResult.Point
- java.lang.Object
-
- alluxio.stress.worker.IOTaskResult.Point
-
- All Implemented Interfaces:
alluxio.util.JsonSerializable
- Enclosing class:
- IOTaskResult
public static class IOTaskResult.Point extends java.lang.Object implements alluxio.util.JsonSerializableAn object representation of a successful I/O operation to the UFS.
-
-
Field Summary
Fields Modifier and Type Field Description longmDataSizeBytesdoublemDurationSecondsIOTaskResult.IOModemMode
-
Constructor Summary
Constructors Constructor Description Point(IOTaskResult.IOMode mode, double duration, long dataSize)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object other)inthashCode()java.lang.StringtoString()
-
-
-
Field Detail
-
mMode
public IOTaskResult.IOMode mMode
-
mDurationSeconds
public double mDurationSeconds
-
mDataSizeBytes
public long mDataSizeBytes
-
-
Constructor Detail
-
Point
public Point(IOTaskResult.IOMode mode, double duration, long dataSize)
- Parameters:
mode- the I/O modeduration- the time takendataSize- the size of I/O in Bytes
-
-