Package org.openmuc.framework.data
Class FutureValue
- java.lang.Object
-
- org.openmuc.framework.data.FutureValue
-
public class FutureValue extends java.lang.Object
Class used to write values in the future.Channel.writeFuture(java.util.List)
-
-
Constructor Summary
Constructors Constructor Description FutureValue(Value value, long writeTime)
Construct a new future value.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Value
getValue()
The future value.java.lang.Long
getWriteTime()
The write time.
-
-
-
Constructor Detail
-
FutureValue
public FutureValue(Value value, long writeTime)
Construct a new future value.- Parameters:
value
- a value.writeTime
- the write time in the future.
-
-
Method Detail
-
getValue
public Value getValue()
The future value.- Returns:
- the value.
-
getWriteTime
public java.lang.Long getWriteTime()
The write time.- Returns:
- the write time.
-
-