C# Class MemExchange.Server.Processor.Book.OrderBookBestBidAsk

Inheritance: IOrderBookBestBidAsk
Mostrar archivo Open project: ThomasVestergaard/MemExchange Class Usage Examples

Private Properties

Property Type Description
NotifyHandlers void

Public Methods

Method Description
OrderBookBestBidAsk ( string symbol ) : System
RegisterUpdateHandler ( Action handler ) : void
Set ( double bestBid, double bestAsk, int bestBidQuantity, int bestAskQuantity ) : bool
ToDto ( ) : MarketBestBidAskDto
UnRegisterUpdateHandler ( Action handler ) : void

Private Methods

Method Description
NotifyHandlers ( ) : void

Method Details

OrderBookBestBidAsk() public method

public OrderBookBestBidAsk ( string symbol ) : System
symbol string
return System

RegisterUpdateHandler() public method

public RegisterUpdateHandler ( Action handler ) : void
handler Action
return void

Set() public method

public Set ( double bestBid, double bestAsk, int bestBidQuantity, int bestAskQuantity ) : bool
bestBid double
bestAsk double
bestBidQuantity int
bestAskQuantity int
return bool

ToDto() public method

public ToDto ( ) : MarketBestBidAskDto
return MemExchange.Core.SharedDto.Level1.MarketBestBidAskDto

UnRegisterUpdateHandler() public method

public UnRegisterUpdateHandler ( Action handler ) : void
handler Action
return void