public TcpMessageSender(string hostname, int port, bool useOctetCounting, TcpSenderSettings senderSettings) { _useOctetCounting = useOctetCounting; _tcpSender = TcpSender.Initialize( hostname, port, senderSettings ); }
public MetricTcpSender( string hostname, int port, TcpSenderSettings senderSettings) { _tcpSender = TcpSender.Initialize( hostname, port, senderSettings ); }