Class ScheduledTaskDurationInfo
- java.lang.Object
-
- org.gcube.vremanagement.executor.scheduledtask.ScheduledTaskDurationInfo
-
public class ScheduledTaskDurationInfo extends Object
- Author:
- Luca Frosini (ISTI - CNR)
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedScheduledTaskDurationInfo()ScheduledTaskDurationInfo(long last, long avg, long min, long max)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetAvg()longgetLast()longgetMax()longgetMin()voidsetAvg(long avg)voidsetLast(long last)voidsetMax(long max)voidsetMin(long min)
-
-
-
Method Detail
-
getLast
public long getLast()
- Returns:
- the last
-
setLast
public void setLast(long last)
- Parameters:
last- the last to set
-
getAvg
public long getAvg()
- Returns:
- the avg
-
setAvg
public void setAvg(long avg)
- Parameters:
avg- the avg to set
-
getMin
public long getMin()
- Returns:
- the min
-
setMin
public void setMin(long min)
- Parameters:
min- the min to set
-
getMax
public long getMax()
- Returns:
- the max
-
setMax
public void setMax(long max)
- Parameters:
max- the max to set
-
-