Ejemplo n.º 1
0
        public async Task <IActionResult> IncrementGlobal(CounterInput input, CancellationToken cancellation = default)
        {
            var value = await _redisCounterStore.IncrementAsync(input.Key, cancellation);

            return(Ok(new CounterValue
            {
                Key = input.Key,
                Value = value
            }));
        }
Ejemplo n.º 2
0
        public async Task <IEnumerable <Event> > ProcessAsync(Event evnt)
        {
            var productOutOfStock = evnt.GetBody <ProductOutOfStock>();

            Trace.TraceInformation("ProductOutOfStockActor - received");

            await Task.Delay(10 *1000);

            Trace.TraceInformation("ProductOutOfStockActor - waiting to get orders from suppliers now back");

            await _stockLevelStore.IncrementAsync(Constants.InventoryCounterName,
                                                  productOutOfStock.ProductId,
                                                  productOutOfStock.Quantity + 2);

            return(new[] { new Event(new ProductArrivedBackInStock()
                {
                    ProductId = productOutOfStock.ProductId
                })
                           {
                               QueueName = "ProductArrivedBackInStock",
                               EventType = "ProductArrivedBackInStock"
                           } });
        }
Ejemplo n.º 3
0
        public async Task <IEnumerable <Event> > ProcessAsync(Event evnt)
        {
            var notYetAccountedFor = evnt.GetBody <OrderItemsNotYetAccountedFor>();
            var keyValue           = notYetAccountedFor.ProductQuantities.First();
            var productId          = keyValue.Key;
            var quantity           = keyValue.Value;


            var inventory = await _inventoryStore.GetAsync(Constants.InventoryCounterName, productId);

            var events = new List <Event>();

            // remove item since it will be dealt with
            notYetAccountedFor.ProductQuantities.Remove(keyValue.Key);


            // if out of stock, raise out of stock
            if (quantity > inventory)
            {
                Trace.TraceInformation("OrderItemInventoryActor - Item out of stock");

                events.Add(new Event(new ProductOutOfStock()
                {
                    ProductId = productId,
                    Quantity  = keyValue.Value
                }));

                events.Add(new Event(new ItemOutOfStockForOrder()
                {
                    OrderId   = notYetAccountedFor.OrderId,
                    ProductId = productId,
                    Quantity  = quantity
                }));

                notYetAccountedFor.AnyOutOfStock = true;
            }
            else
            {
                // decrement repo
                await _inventoryStore.IncrementAsync(Constants.InventoryCounterName,
                                                     productId, -quantity);

                Trace.TraceInformation("OrderItemInventoryActor - Item in stock");
            }

            if (notYetAccountedFor.ProductQuantities.Count > 0)
            {
                // put back in the queue
                events.Add(new Event(new OrderItemsNotYetAccountedFor()
                {
                    OrderId           = notYetAccountedFor.OrderId,
                    AnyOutOfStock     = notYetAccountedFor.AnyOutOfStock,
                    ProductQuantities = notYetAccountedFor.ProductQuantities
                }));
            }


            if (notYetAccountedFor.ProductQuantities.Count == 0)
            {
                if (notYetAccountedFor.AnyOutOfStock)
                {
                    // TODO: cant remember what needs to be done ;)
                }
                else
                {
                    events.Add(new Event(new OrderInventoryCheckCompleted()
                    {
                        OrderId = notYetAccountedFor.OrderId
                    }));
                }
            }

            return(events);
        }