Package org.openmuc.framework.dataaccess
Interface WriteValueContainer
-
public interface WriteValueContainer
A container to write a to channel.Channel.getWriteContainer()
DataAccessService.write(java.util.List)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Channel
getChannel()
Get the corresponding channel.Flag
getFlag()
Get the resulting of the write action.Value
getValue()
Get the value of the container.void
setValue(Value value)
Set the value of the container.
-
-
-
Method Detail
-
setValue
void setValue(Value value)
Set the value of the container.- Parameters:
value
- the value to set on the channel.getChannel()
-
getValue
Value getValue()
Get the value of the container.- Returns:
- the value which has been set via
setValue(Value)
.
-
getFlag
Flag getFlag()
Get the resulting of the write action.- Returns:
- the result of the write. Only available if the value has been written.
-
getChannel
Channel getChannel()
Get the corresponding channel.- Returns:
- the channel.
-
-