Package org.openmuc.framework.dataaccess
Interface WriteValueContainer
-
public interface WriteValueContainerA 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 ChannelgetChannel()Get the corresponding channel.FlaggetFlag()Get the resulting of the write action.ValuegetValue()Get the value of the container.voidsetValue(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.
-
-