Struct DataClientAdapter

Source
pub struct DataClientAdapter {
Show 17 fields pub client_id: ClientId, pub venue: Venue, pub handles_book_deltas: bool, pub handles_book_snapshots: bool, pub subscriptions_generic: HashSet<DataType>, pub subscriptions_book_deltas: HashSet<InstrumentId>, pub subscriptions_book_depth10: HashSet<InstrumentId>, pub subscriptions_book_snapshots: HashSet<InstrumentId>, pub subscriptions_quotes: HashSet<InstrumentId>, pub subscriptions_trades: HashSet<InstrumentId>, pub subscriptions_bars: HashSet<BarType>, pub subscriptions_instrument_status: HashSet<InstrumentId>, pub subscriptions_instrument_close: HashSet<InstrumentId>, pub subscriptions_instrument: HashSet<InstrumentId>, pub subscriptions_instrument_venue: HashSet<Venue>, pub subscriptions_mark_prices: HashSet<InstrumentId>, pub subscriptions_index_prices: HashSet<InstrumentId>, /* private fields */
}

Fields§

§client_id: ClientId§venue: Venue§handles_book_deltas: bool§handles_book_snapshots: bool§subscriptions_generic: HashSet<DataType>§subscriptions_book_deltas: HashSet<InstrumentId>§subscriptions_book_depth10: HashSet<InstrumentId>§subscriptions_book_snapshots: HashSet<InstrumentId>§subscriptions_quotes: HashSet<InstrumentId>§subscriptions_trades: HashSet<InstrumentId>§subscriptions_bars: HashSet<BarType>§subscriptions_instrument_status: HashSet<InstrumentId>§subscriptions_instrument_close: HashSet<InstrumentId>§subscriptions_instrument: HashSet<InstrumentId>§subscriptions_instrument_venue: HashSet<Venue>§subscriptions_mark_prices: HashSet<InstrumentId>§subscriptions_index_prices: HashSet<InstrumentId>

Implementations§

Source§

impl DataClientAdapter

Source

pub fn new( client_id: ClientId, venue: Venue, handles_order_book_deltas: bool, handles_order_book_snapshots: bool, client: Box<dyn DataClient>, clock: Rc<RefCell<dyn Clock>>, ) -> Self

Creates a new DataClientAdapter instance.

Source

pub fn through_execute(&self, command: SubscribeCommand)

TODO: Decide whether to use mut references for subscription commands

Source

pub fn execute_subscribe_command(&mut self, cmd: SubscribeCommand)

Source

pub fn execute_unsubscribe_command(&mut self, cmd: UnsubscribeCommand)

Source

pub fn subscribe(&mut self, cmd: SubscribeData) -> Result<()>

Source

pub fn unsubscribe(&mut self, cmd: UnsubscribeData) -> Result<()>

Source

pub fn request_data(&self, req: RequestData) -> Result<()>

Source

pub fn request_instrument(&self, req: RequestInstrument) -> Result<()>

Source

pub fn request_instruments(&self, req: RequestInstruments) -> Result<()>

Source

pub fn request_quotes(&self, req: RequestQuotes) -> Result<()>

Source

pub fn request_trades(&self, req: RequestTrades) -> Result<()>

Source

pub fn request_bars(&self, req: RequestBars) -> Result<()>

Source

pub fn handle_instrument( &self, instrument: InstrumentAny, correlation_id: UUID4, ) -> CustomDataResponse

Source

pub fn handle_instruments( &self, venue: Venue, instruments: Vec<InstrumentAny>, correlation_id: UUID4, ) -> CustomDataResponse

Source

pub fn handle_quotes( &self, instrument_id: &InstrumentId, quotes: Vec<QuoteTick>, correlation_id: UUID4, ) -> CustomDataResponse

Source

pub fn handle_trades( &self, instrument_id: &InstrumentId, trades: Vec<TradeTick>, correlation_id: UUID4, ) -> CustomDataResponse

Source

pub fn handle_bars( &self, bar_type: &BarType, bars: Vec<Bar>, correlation_id: UUID4, ) -> CustomDataResponse

Trait Implementations§

Source§

impl Debug for DataClientAdapter

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Deref for DataClientAdapter

Source§

type Target = Box<dyn DataClient>

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl DerefMut for DataClientAdapter

Source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more