[][src]Struct alpaca_finance::Streamer

pub struct Streamer<'a> { /* fields omitted */ }

Realtime event streamer

Currently streams updates to orders and the account. To use the streamer, first create a new one and then listen on the stream of events coming in.

Example

To listen on the stream of events:

let alpaca = Alpaca::live("KEY_ID", "SECRET").await.unwrap();

let streamer = Streamer:new(&alpaca);
streamer.start().await
   .for_each(|msg| {
      match msg {
         StreamMessage::Account(_) => println!("Got an account update!"),
         StreamMessage::Order(_) => println!("Got an order update!"),
         _ => println!("Got an unexpected msg")
      }
      future::ready(())
   })
   .await;

Implementations

impl<'a> Streamer<'a>[src]

pub fn new(alpaca: &'a Alpaca) -> Streamer<'a>[src]

Creates a new event streamer.

pub async fn start<'_>(&'_ self) -> impl Stream<Item = StreamMessage>[src]

Starts the stream of events

pub fn stop(&mut self)[src]

Stops the stream of events

Auto Trait Implementations

impl<'a> RefUnwindSafe for Streamer<'a>

impl<'a> Send for Streamer<'a>

impl<'a> Sync for Streamer<'a>

impl<'a> Unpin for Streamer<'a>

impl<'a> UnwindSafe for Streamer<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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