Ctx<T>
Ctx
helps detach all Handler
s that were attached in the goal of acompishing a certain task once the said task is done or aborted.
Get Ctx instance usingEvt.newCtx<T>()
or Evt.getCtx(obj)
The only difference between CtxVoid
and Ctx<void>
is that ctxVoid.done()
can be called without argument when ctx<void>.done(result)
must be called with an argument (null
or undefined
).
ctx.done(result?)
ctx.done(result?)
Detach, from the Evt
instances they are attached to, all Handlers bound to the context.
Calling this method causes the Evt
returned by ctx.getEvtDone()
to be posted.
When an fλ operator return { "DETACH": ctx }
, ctx.done()
is invoked.
When it returns { "DETACH": ctx, "res": result }
, ctx.done(result)
is invoked.
To test if ctx.done() have been invoked already you can use:ctx.getEvtDone().postCount !== 0
Returns
ReturnType<ctx.getHandlers()>
All the Handlers that were bound to the context. They are now detached, calling ctx.getHandler()
just after ctx.done()
returns an empty array.
Parameter
T
forCtx<T>
none for
VoidCtx
ctx.abort(error)
ctx.abort(error)
Equivalent of ctx.done()
to use when the task did not go through.
When a fλ operator returns { "DETACH": ctx, "err": error }
, ctx.abort(error)
is invoked.
Returns
ReturnType<ctx.done()>
(cf ctx.done
)
Parameter
Error
an error that describes what went wrong.
ctx.evtDoneOrAborted
ctx.evtDoneOrAborted
Tracks when ctx.done or ctx.abort are invoked.
For most use cases, it is more convenient to use ctx.waitFor([timeout])
Returns
For VoidCtx an Evt that posts:
{ handlers: Handler.WithEvt[] }
whenctx.done()
is called.{ error: Error, handlers: Handler.WithEvt[] }
whenctx.abort(error)
is called.
For
Ctx<T>
, anEvt
that post:{ result: Result; handlers: Handler.WithEvt[]; }
whenctx.done(result)
is called.{ error: Error, handlers: Handlers.WithEvt[]; }
whenctx.abort(error)
is called.
Handler.WithEvt<T>
is just a type alias for an object that wraps a handler and the Evt
it is attached to: { handler: Handler<T, any>, evt: Evt<T> }
Example
ctx.waitFor([timeout])
ctx.waitFor([timeout])
Tracks via a Promise that resolves when ctx.done()
or ctx.abort()
is invoked.
Returns
Promise<T>
(T
is the type argument of Ctx<T>
) A promise that resolve when ctx.done([result]) is invoked.
If ctx.abort(error)
is invoked before ctx.done()
the promise rejects with error
.
If timeout was specified the promise rejects if ctx.done()
was not invoked within timeout
milliseconds. If it happens ctx.abort(timeoutError)
is internally invoked timeoutError
being an instance of EvtError.Timeout
.
Parameter
number
Optional, number of milliseconds before the promise reject if it hasn't fulfilled within this delay.
ctx.getHandlers()
ctx.getHandlers()
Returns
Handler.WithEvt[]
The Handler
s that are bound to the context alongside with the Evt
instance each one is attached to. The Handlers that are bound to the context but no longer attached to an Evt are not listed ( they are usually freed from memory anyway as there should be nor reference left of them as soon as they are detached ).
Example
ctx.evtAttach
ctx.evtAttach
Returns
Evt<Handler.WithEvt<any>>
An Evt that posts every time a new handler bound to the context is attached.
ctx.evtDetach
ctx.evtDetach
Same as ctx.getEvtAttach()
but post when handlers are detached. Note that a handler being detached does not mean that it has been explicitly detached. One-time handlers and handlers that have timed out are automatically detached.
Comprehensive example
Let us consider a practical use case of Ctx
. The task is to download a file, we know the size of the file to download, we have an Evt<Uint8Array>
that emits chunks of data, we want to accumulate them until we reach the expected file size. Multiple things can go wrong during the download:
The user can cancel the download.
The download can take too long.
Socket may disconnect .
The socket may send more data than expected.
Our expected output is a Promise<Uint8Array>
that resolves with the downloaded file or reject if anything went wrong.
This is a possible implementation using Ctx<Uint8Array>
:
Whether the download is successful or not this use of Ctx
enforce that there is no left over handlers on the Evt
passed as input once the download attempt has completed.
Last updated