pub trait SubscribeComplete<'a, N, C> {
    type Unsub: SubscriptionLike;
    fn subscribe_complete(
        self,
        next: N,
        complete: C
    ) -> SubscriptionWrapper<Self::Unsub>; }

Associated Types

Required methods

Invokes an execution of an Observable and registers Observer handlers for notifications it will emit.

Implementors