Ejemplo n.º 1
0
 public void Dispose()
 {
     if (this.commandBusClient != null)
     {
         this.commandBusClient.Dispose();
         this.commandBusClient = null;
     }
 }
Ejemplo n.º 2
0
 public AdvancedCommandBus(string url, ZazConfiguration configuration = null)
 {
     _client = new CommandBusClient(url, configuration);
 }
Ejemplo n.º 3
0
        public Sword()
        {
            this.commandBusClient = CommandBusFactory.CreateCommandBus();

            this._proxy = CommandBusILEmitAdapter.Create <T>(this.commandBusClient);
        }