115116117118119120121122123
* @return a <code>Duration</code> instance, or <code>null</code> if this operation has not * completed yet. */ public Duration getDuration() { if (startTime != null && status.isDone()) { return new Duration(startTime, statusTime); } return null; }