Overview
Stream
The then
and thenOnce
methods of a Stream
instance return Subjection instances
Subjection
The then
and thenOnce
methods of a Subjection
instance also return Subjection instances
plugin
Type
typescripttype 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 andexecute
plugins:then
plugins are executed when thethen
method is called. They are passed the node'sunsubscribe
function, allowing for unified unsubscription capability.execute
plugins are executed after theexecute
method is called. They are passed the current node'spromise
and the node'sunsubscribe
function. The returnedpromise
will be passed to the nextexecute
plugin. The final returnedpromise
data will be passed to the nextthen
node.
then
Type
typescripttype 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 withpromise
, returns a Subjection instance of the subscription node.
thenOnce
Type
typescripttype 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
andthen
is that it automatically unsubscribes after executing once.
thenImmediate
类型
typescripttype 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
andthen
is that if the parent subscription node has beenexecute
, usingthenImmediate
will immediately trigger the subscription child node'sexecute
.
catch
Type
typescripttype OnRejected<T> = Parameters<Promise<T>['catch']>[0] catch(onRejected: OnRejected<unknown>): Subjection
Details
Performs
catch
on the subscription node, usage consistent withpromise
, returns a Subjection instance of the subscription node.
finally
Type
typescripttype OnFinally<T> = Parameters<Promise<T>['finally']>[0] finally(onFinally: OnFinally<unknown>): Subjection
Details
Performs
finally
on the subscription node, usage consistent withpromise
, returns a Subjection instance of the subscription node.
unsubscribe
Type
typescriptunsubscribe(): void
Details
Cancels the node's subscription. Unlike
promise
's inability to cancel, the subscription ofstream
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
typescriptsetUnsubscribeCallback(callback: () => void): void
Details
Sets the callback function for when the node's subscription is canceled.
finish
Type
typescriptfinish: Promise<any>;
Details
A
promise
triggered when the stream ends, which will trigger earlier than the automatic unsubscription of subscription nodes.
execute
Type
typescriptexecute: () => 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
typescriptpause: () => void
Details
Pauses the current stream. After executing the
pause
method, all subscribed nodes will not execute.
restart
Type
typescriptrestart: () => void
Details
Restarts the current stream. After executing the
restart
method, all subscribed nodes will start accepting and executing stream pushes.
next
Type
typescriptnext(payload: any, finishFlag?: boolean): void;
Details
Pushes data to the current stream.
payload
is the data. When set toPromise.reject(xxx)
, subsequentthen
behavior is consistent withpromise
'sthen
. The second parameter indicates whether the current stream is finished. When set totrue
, subsequentnext
calls will not execute.