Ejemplo n.º 1
0
        public void Body <TBody>(TBody body)
        {
            var headers = new Dictionary <string, string>();

            headers[HeaderKey.Method] = MessageMethod.Send;

            _output.Send(body, headers);
        }
Ejemplo n.º 2
0
            public void Send <T>(T message, IDictionary <string, string> headers)
            {
                headers[HeaderKey.DestinationAddress] = _destinationAddress;

                _output.Send(message, headers);
            }
Ejemplo n.º 3
0
 public void Send <T>(T message, IDictionary <string, string> headers)
 {
     _writer.Send(message, headers);
 }