Skip to content

Overview

Stream

The then and thenOnce methods of a Stream instance return Subjection instances

Subjection

const subjection$ = promise$.then((data) => data + 1)

The then and thenOnce methods of a Subjection instance also return Subjection instances

plugin

  • Type

    typescript
    type thenPlugin = (unsubscribe: () => void) => void
    type executePlugin = ( promise: Promise<any>, unsubscribe: () => void ) => Promise<any>
    
    plugin: {
      then: thenPlugin[]
      execute: executePlugin[]
    }
  • Details

    plugin can define two types of plugins: then plugins and execute plugins:

    • then plugins are executed when the then method is called. They are passed the node's unsubscribe function, allowing for unified unsubscription capability.
    • execute plugins are executed after the execute method is called. They are passed the current node's promise and the node's unsubscribe function. The returned promise will be passed to the next execute plugin. The final returned promise data will be passed to the next then node.

then

  • Type

    typescript
    type OnFulfilled<T> = Parameters<Promise<T>['then']>[0]
    type OnRejected<T> = Parameters<Promise<T>['catch']>[0]
    
    then<T>(
      onFulfilled: OnFulfilled<T>,
      onRejected?: OnRejected<unknown>,
    ): Subjection
  • Details

    then subscriber, usage consistent with promise, returns a Subjection instance of the subscription node.

thenOnce

  • Type

    typescript
    type OnFulfilled<T> = Parameters<Promise<T>['then']>[0]
    type OnRejected<T> = Parameters<Promise<T>['catch']>[0]
    
    thenOnce<T>(
      onFulfilled: OnFulfilled<T>,
      onRejected?: OnRejected<unknown>,
    ): Subjection
  • Details

    The difference between thenOnce and then is that it automatically unsubscribes after executing once.

thenImmediate

  • 类型

    typescript
    type OnFulfilled<T> = Parameters<Promise<T>['then']>[0]
    type OnRejected<T> = Parameters<Promise<T>['catch']>[0]
    
    thenImmediate<T>(
      onFulfilled: OnFulfilled<T>,
      onRejected?: OnRejected<unknown>,
    ): Subjection
  • 详情

    The difference between thenImmediate and then is that if the parent subscription node has been execute, using thenImmediate will immediately trigger the subscription child node's execute.

catch

  • Type

    typescript
    type OnRejected<T> = Parameters<Promise<T>['catch']>[0]
    
    catch(onRejected: OnRejected<unknown>): Subjection
  • Details

    Performs catch on the subscription node, usage consistent with promise, returns a Subjection instance of the subscription node.

finally

  • Type

    typescript
    type OnFinally<T> = Parameters<Promise<T>['finally']>[0]
    
    finally(onFinally: OnFinally<unknown>): Subjection
  • Details

    Performs finally on the subscription node, usage consistent with promise, returns a Subjection instance of the subscription node.

unsubscribe

  • Type

    typescript
    unsubscribe(): void
  • Details

    Cancels the node's subscription. Unlike promise's inability to cancel, the subscription of stream can be canceled at any time.

    Warning

    Canceling the current node's subscription will also cancel all subscriptions of nodes after the current node's then.

setUnsubscribeCallback

  • Type

    typescript
    setUnsubscribeCallback(callback: () => void): void
  • Details

    Sets the callback function for when the node's subscription is canceled.

finish

  • Type

    typescript
    finish: Promise<any>;
  • Details

    A promise triggered when the stream ends, which will trigger earlier than the automatic unsubscription of subscription nodes.

execute

  • Type

    typescript
    execute: () => void
  • Details

    Actively executes the current node. The data used is from the last time the stream passed through this node. If the node has never been executed before, it won't execute.

    WARNING

    Executing the current node will also execute nodes after the current node's then, equivalent to pushing the stream at the current node.

pause

  • Type

    typescript
    pause: () => void
  • Details

    Pauses the current stream. After executing the pause method, all subscribed nodes will not execute.

restart

  • Type

    typescript
    restart: () => void
  • Details

    Restarts the current stream. After executing the restart method, all subscribed nodes will start accepting and executing stream pushes.

next

  • Type

    typescript
    next(payload: any, finishFlag?: boolean): void;
  • Details

    Pushes data to the current stream. payload is the data. When set to Promise.reject(xxx), subsequent then behavior is consistent with promise's then. The second parameter indicates whether the current stream is finished. When set to true, subsequent next calls will not execute.