Esempio n. 1
0
        public void Process(SocketMessage message, IResponse response)
        {
            try
            {
                "Client {0} sez: {1}".ToInfo <ClientMessage>(message.From, message.Body);
                response.Acknowledge();

                _bus.Send("client", new SocketMessage()
                {
                    Body = "If you ever speak to me that way again. I'll kill your face.", To = "client"
                });
            }
            catch (Exception ex)
            {
                throw;
            }
        }