Package org.duracloud.syncui.domain
Class SyncProcessStats
- java.lang.Object
-
- org.duracloud.syncui.domain.SyncProcessStats
-
public class SyncProcessStats extends Object
A Read-only data object deCribing the state of the sync tool from the user's perspective.- Author:
- Daniel Bernstein
-
-
Constructor Summary
Constructors Constructor Description SyncProcessStats()SyncProcessStats(Date startDate, Date estimatedCompletionDate, int errorCount, long currentUpBytesPerSecond, long averageUpBytesPerSecond, int queueSize)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetAverageUpBytesPerSecond()longgetCurrentUpBytesPerSecond()intgetErrorCount()DategetEstimatedCompletionDate()intgetQueueSize()DategetStartDate()
-
-
-
Method Detail
-
getStartDate
public Date getStartDate()
-
getEstimatedCompletionDate
public Date getEstimatedCompletionDate()
-
getErrorCount
public int getErrorCount()
-
getCurrentUpBytesPerSecond
public long getCurrentUpBytesPerSecond()
-
getAverageUpBytesPerSecond
public long getAverageUpBytesPerSecond()
-
getQueueSize
public int getQueueSize()
-
-