Untitled

 avatar
unknown
csharp
2 years ago
398 B
1
Indexable
public void OnPriceLevelSideChange(double price, bool isBidSide, IEnumerable<PriceLevelSideOrder> orders)
{
    LockedScopeProvider(async (dbContext, userContextService, matchingEngineHub) =>
    {
        await matchingEngineHub.Clients.All.SendAsync("onPriceLevelSideChange", price, isBidSide, orders, orders.Sum(o=>o.Quantity));
        Console.Write($"OnChangePriceLevelSide");
    });
}
Editor is loading...