org.khelekore.rnio.statistics
Class CompletionEntry

java.lang.Object
  extended by 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.
 
Constructor Summary
CompletionEntry(TaskIdentifier ti, boolean wasOk, long timeSpent)
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

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.

Constructor Detail

CompletionEntry

public CompletionEntry(TaskIdentifier ti,
                       boolean wasOk,
                       long timeSpent)