Interface TcpOutputStrategy
-
- All Known Implementing Classes:
QueuingTcpOutputStrategy
,SimpleTcpOutputStrategy
public interface TcpOutputStrategy
Defines an abstract strategy for manipulating TCP output socket.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
updateData(String path, String owner, Long timestamp, List<Double> dblValues, List<String> strValues)
Updates the TCP output stream with the supplied values
-
-
-
Method Detail
-
updateData
void updateData(String path, String owner, Long timestamp, List<Double> dblValues, List<String> strValues) throws Exception
Updates 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:
Exception
- if an error occurs updating the file
-
-