Esempio n. 1
0
 static void publishCustomer(EasyNetQ.IBus bus, Order order)
 {
     using (var busNew = RabbitHutch.CreateBus("host=localhost"))
     {
         busNew.Publish(order, order.Customer.Id.ToString());
     }
 }
Esempio n. 2
0
        static void processWarehouseResponse(EasyNetQ.IBus bus, Order order, List <int> pendingOrders)
        {
            bool hasCheckedAll = false;

            if (pendingOrders.Contains(order.Id))
            {
                if (order.ProductFound == true) //We have found the product, so we send the response to the customer.
                {
                    publishCustomer(bus, order);
                    pendingOrders.Remove(order.Id);
                }
                else if (order.ProductFound == false & !hasCheckedAll)//The product has not been found, so we publish to all the warehouses without topic.
                {
                    using (var busNew = RabbitHutch.CreateBus("host=localhost"))
                    {
                        busNew.Publish(order, "all");
                    }
                    hasCheckedAll = true;
                }
                else if (order.ProductFound == false && hasCheckedAll)
                {
                    publishCustomer(bus, order);
                    pendingOrders.Remove(order.Id);
                }
            }
        }
Esempio n. 3
0
        public static void BootStrap()
        {
            var adapter = new EasyNetQ.DI.AutofacAdapter(new ContainerBuilder());
            Container = adapter.Container;

            RabbitHutch.SetContainerFactory(() => { return adapter; });
            EasyNetQBus = EasyNetQ.RabbitHutch.CreateBus(Grit.Configuration.RabbitMQ.ACEQueueConnectionString,
                x => x.Register<IEasyNetQLogger, NullLogger>());

            _builder = new ContainerBuilder();
            BindFrameworkObjects();
            BindBusinessObjects();
            _builder.Update(Container);
        }
Esempio n. 4
0
        public static void BootStrap()
        {
            var adapter = new EasyNetQ.DI.AutofacAdapter(new ContainerBuilder());

            Container = adapter.Container;

            RabbitHutch.SetContainerFactory(() => { return(adapter); });
            EasyNetQBus = EasyNetQ.RabbitHutch.CreateBus(Grit.Configuration.RabbitMQ.ACEQueueConnectionString,
                                                         x => x.Register <IEasyNetQLogger, NullLogger>());

            _builder = new ContainerBuilder();
            BindFrameworkObjects();
            BindBusinessObjects();
            _builder.Update(Container);
        }
Esempio n. 5
0
        static void HandleOrderReplyMessage(int queue, Order order, EasyNetQ.IBus bus, List <int> pendingOrders)
        {
            //throw new Exception("Testing invalid message channel");
            switch (queue)
            {
            //Receives message from Customer and publishes to Warehouse
            case 1:
                Console.ForegroundColor = ConsoleColor.Green;
                Console.WriteLine("CustomerID (" + order.Customer.Id + ") => OrderID: " + order.Id);
                Console.ResetColor();
                publishWarehouse(bus, order);
                bus.Receive <Order>("warehouseSendQueue", orderFromWarehouse => HandleOrderReplyMessage(2, orderFromWarehouse, bus, pendingOrders));
                pendingOrders.Add(order.Id);
                break;

            //Receives message from Warehouse and sends it back to the Customer
            case 2:
                Console.ForegroundColor = ConsoleColor.Magenta;
                Console.WriteLine("Retailer => Received from Warehouse: " + order.Id + "Delivery Days" + order.DeliveryDays);
                Console.ResetColor();
                processWarehouseResponse(bus, order, pendingOrders);
                break;
            }
        }
 public RabbitMQHealthCheckFromBus(EasyNetQ.IBus bus)
 {
     this.bus = bus;
 }
Esempio n. 7
0
 public RabbitService(IRabbit rabbit, ILogger <RabbitService> logger)
 {
     _rabbit = rabbit;
     _logger = logger;
 }
Esempio n. 8
0
 public PublishService(IRabbit rabbit)
 {
     _rabbit = rabbit;
 }
Esempio n. 9
0
 static void publishWarehouse(EasyNetQ.IBus bus, Order order)
 {
     bus.Publish(order, order.Customer.origin);
 }