Exemple #1
0
        public BusSubscription Subscribe(string queueName, Func <BusContext, BusMessage, BusHandlerResponse> handler)
        {
            var subscription = new BusSubscription {
                TopicName = queueName, Handler = handler
            };

            this.busSubscribers.Add(subscription);

            return(subscription);
        }
Exemple #2
0
        static void Main(string[] args)
        {
            using (var bs = new BusSubscription())
                using (var d = new CommandDispatcher(bs))
                {
                    var superHeroId    = Guid.NewGuid();
                    var superVillainId = Guid.NewGuid();

                    Thread.Sleep(1000);
                    Console.WriteLine("Adding Joker");
                    d.DispatchAsync(new AddSuperVillain()
                    {
                        Name = "Joker", Id = superVillainId
                    }).Wait();

                    Console.WriteLine("Adding Spiderman");
                    d.DispatchAsync(new AddSuperhero {
                        Name = "Spiderman", Id = superHeroId, Address = "New York", Dob = new DateTime(1984, 11, 15)
                    }).Wait();

                    Thread.Sleep(5000);
                    Console.WriteLine("Joker tries to demolish New York");
                    d.DispatchAsync(new TryDestroyACity {
                        Id = Guid.NewGuid(), SuperVillainId = superVillainId, CityName = "New York", CountryCode = "US"
                    }).Wait();
                    Thread.Sleep(5000);
                    Console.WriteLine("Joker tries to poison Volga");
                    d.DispatchAsync(new TryPoisonWater()
                    {
                        Id = Guid.NewGuid(), SuperVillainId = superVillainId, RiverName = "Volga", CountryCode = "RU"
                    }).Wait();

                    Thread.Sleep(5000);

                    Console.WriteLine("Spiderman is too tired and retired!");
                    d.DispatchAsync(new RetireSuperhero {
                        Id = superHeroId
                    });
                    Console.ReadLine();
                }
        }
Exemple #3
0
 public void Unsubscribe(BusSubscription subscription)
 {
     throw new NotImplementedException();
 }
Exemple #4
0
 public void Unsubscribe(BusSubscription subscription)
 {
     this.busSubscribers.Remove(subscription);
 }