Interface TcpOutputStrategy
-
- All Known Implementing Classes:
QueuingTcpOutputStrategy,SimpleTcpOutputStrategy
public interface TcpOutputStrategyDefines an abstract strategy for manipulating TCP output socket.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidupdateData(java.lang.String path, java.lang.String owner, java.lang.Long timestamp, java.util.List<java.lang.Double> dblValues, java.util.List<java.lang.String> strValues)Updates the TCP output stream with the supplied values
-
-
-
Method Detail
-
updateData
void updateData(java.lang.String path, java.lang.String owner, java.lang.Long timestamp, java.util.List<java.lang.Double> dblValues, java.util.List<java.lang.String> strValues) throws java.lang.ExceptionUpdates the TCP output stream with the supplied values- Parameters:
path- the hierarchy path for the dataowner- the owner of the datadblValues- a list of Double valuesstrValues- a list of String values- Throws:
java.lang.Exception- if an error occurs updating the file
-
-