Beispiel #1
0
        public void SetUp()
        {
            var participant = new StubParticipant();

            _server = new JsonAmqpRpcServer("localhost", "QUEUE_NAME", new ParticipantHandler(participant));
            _server.Start();
            _client = new JsonAmqpRpcClient("localhost", "QUEUE_NAME");
        }
 public void SetUp()
 {
     var participant = new StubParticipant();
     _server = new JsonAmqpRpcServer("localhost", "QUEUE_NAME", new ParticipantHandler(participant));
     _server.Start();
     _client = new JsonAmqpRpcClient("localhost", "QUEUE_NAME");
 }