Handler<T, U> (type)
type Handler<T,U> = {
//Method for detaching the handler from the Evt, returns false if
//if invoked when the handler is no longer attached.
detach(): boolean;
//The promise returned by the attach*() and waitFor() method.
promise: Promise<U>;
/* Properties that depends on the method used to attach the handler */
//true if the handler was attached using a method containing "prepend"
//in it's name. Example: evt.$attachOncePrepend(...)
prepend: boolean;
//... if the method contained "extract"
extract: boolean;
//... if the method contained "once"
once: boolean;
//if the method was waitFor()
async: boolean;
/* Properties passed as argument to the method used to attach the handler */
//Default: ()=> true, a filter that matches all events.
op: Operator<T,U>;
//Default: undefined
ctx?: Ctx;
//Default: undefined.
timeout?: number;
//Undefined only when the handler was attached using evt.waitFor()
callback?: (transformedData: U)=> void;
};Glossary relative to handers:
Last updated
Was this helpful?