DataClientAdapter

Struct DataClientAdapter 

Source
pub struct DataClientAdapter {
Show 22 fields pub client_id: ClientId, pub venue: Option<Venue>, pub handles_book_deltas: bool, pub handles_book_snapshots: bool, pub subscriptions_custom: AHashSet<DataType>, pub subscriptions_book_deltas: AHashSet<InstrumentId>, pub subscriptions_book_depth10: AHashSet<InstrumentId>, pub subscriptions_book_snapshots: AHashSet<InstrumentId>, pub subscriptions_quotes: AHashSet<InstrumentId>, pub subscriptions_trades: AHashSet<InstrumentId>, pub subscriptions_bars: AHashSet<BarType>, pub subscriptions_instrument_status: AHashSet<InstrumentId>, pub subscriptions_instrument_close: AHashSet<InstrumentId>, pub subscriptions_instrument: AHashSet<InstrumentId>, pub subscriptions_instrument_venue: AHashSet<Venue>, pub subscriptions_mark_prices: AHashSet<InstrumentId>, pub subscriptions_index_prices: AHashSet<InstrumentId>, pub subscriptions_funding_rates: AHashSet<InstrumentId>, pub subscriptions_blocks: AHashSet<Blockchain>, pub subscriptions_pools: AHashSet<InstrumentId>, pub subscriptions_pool_swaps: AHashSet<InstrumentId>, pub subscriptions_pool_liquidity_updates: AHashSet<InstrumentId>, /* private fields */
}
Expand description

Wraps a DataClient, managing subscription state and forwarding commands.

Fields§

§client_id: ClientId§venue: Option<Venue>§handles_book_deltas: bool§handles_book_snapshots: bool§subscriptions_custom: AHashSet<DataType>§subscriptions_book_deltas: AHashSet<InstrumentId>§subscriptions_book_depth10: AHashSet<InstrumentId>§subscriptions_book_snapshots: AHashSet<InstrumentId>§subscriptions_quotes: AHashSet<InstrumentId>§subscriptions_trades: AHashSet<InstrumentId>§subscriptions_bars: AHashSet<BarType>§subscriptions_instrument_status: AHashSet<InstrumentId>§subscriptions_instrument_close: AHashSet<InstrumentId>§subscriptions_instrument: AHashSet<InstrumentId>§subscriptions_instrument_venue: AHashSet<Venue>§subscriptions_mark_prices: AHashSet<InstrumentId>§subscriptions_index_prices: AHashSet<InstrumentId>§subscriptions_funding_rates: AHashSet<InstrumentId>§subscriptions_blocks: AHashSet<Blockchain>§subscriptions_pools: AHashSet<InstrumentId>§subscriptions_pool_swaps: AHashSet<InstrumentId>§subscriptions_pool_liquidity_updates: AHashSet<InstrumentId>

Implementations§

Source§

impl DataClientAdapter

Source

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

Creates a new DataClientAdapter with the given client and clock.

Source

pub fn get_client(&self) -> &Box<dyn DataClient>

Source

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

Source

pub fn execute_defi_subscribe(&mut self, cmd: &DefiSubscribeCommand)

Source

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

Source

pub fn execute_defi_unsubscribe(&mut self, cmd: &DefiUnsubscribeCommand)

Source

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

Subscribes to a custom data type, updating internal state and forwarding to the client.

§Errors

Returns an error if the underlying client subscribe operation fails.

Source

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

Unsubscribes from a custom data type, updating internal state and forwarding to the client.

§Errors

Returns an error if the underlying client unsubscribe operation fails.

Source

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

Sends a data request to the underlying client.

§Errors

Returns an error if the client request fails.

Source

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

Sends a single instrument request to the client.

§Errors

Returns an error if the client fails to process the request.

Source

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

Sends a batch instruments request to the client.

§Errors

Returns an error if the client fails to process the request.

Source

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

Sends a quotes request for a given instrument.

§Errors

Returns an error if the client fails to process the quotes request.

Source

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

Sends a trades request for a given instrument.

§Errors

Returns an error if the client fails to process the trades request.

Source

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

Sends a bars request for a given instrument and bar type.

§Errors

Returns an error if the client fails to process the bars request.

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.

§

impl<T> Instrument for T

§

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

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

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<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
§

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

§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] only if self and other return Action::Follow. Read more
§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] if either self or other returns Action::Follow. Read more
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> Same for T

Source§

type Output = T

Should always be Self
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.
§

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

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
§

fn with_current_subscriber(self) -> WithDispatch<Self>

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

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> Ungil for T
where T: Send,