org.khelekore.rnio.statistics
Class CompletionEntry
java.lang.Object
org.khelekore.rnio.statistics.CompletionEntry
public final class CompletionEntry
- extends Object
Information about a completed task.
- Author:
- Robert Olofsson
Field Summary |
TaskIdentifier |
ti
The identifier of the task that has been completed. |
long |
timeSpent
The number of millis spent on the task. |
boolean |
wasOk
The status of the completed job. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ti
public final TaskIdentifier ti
- The identifier of the task that has been completed.
wasOk
public final boolean wasOk
- The status of the completed job.
timeSpent
public final long timeSpent
- The number of millis spent on the task.
CompletionEntry
public CompletionEntry(TaskIdentifier ti,
boolean wasOk,
long timeSpent)