@daiso-tech/core
Version:
The library offers flexible, framework-agnostic solutions for modern web applications, built on adaptable components that integrate seamlessly with popular frameworks like Next Js.
47 lines (46 loc) • 1.97 kB
TypeScript
/**
* @module Resilience
*/
import { type AsyncMiddlewareFn, type HookContext } from "../../../hooks/_module.js";
import { type ObserveCallbacks } from "../../../resilience/middlewares/observe/observe.types.js";
/**
* The `observe` middleware tracks an async function's state and runs callbacks when it fails with an error or succeeds.
*
* IMPORT_PATH: `"@daiso-tech/core/resilience"`
* @group Middlewares
*
* @example
* ```ts
* import { observe, ITask } from "@daiso-tech/core/resilience";
* import { AsyncHooks } from "@daiso-tech/core/hooks";
* import { TimeSpan } from "@daiso-tech/core/time-span";
*
* await new AsyncHooks(
* // Lets pretend this function can throw and takes time to execute.
* async (a: number, b: number): Promise<number> => {
* const shouldThrow1 = Math.round(Math.random() * 100);
* if (shouldThrow1 > 50) {
* throw new Error("Unexpected error occured");
* }
* await Task.delay(TimeSpan.fromMilliseconds(Math.random() * 1000));
* const shouldThrow2 = Math.round(Math.random() * 100);
* if (shouldThrow2 > 50) {
* throw new Error("Unexpected error occured");
* }
* return a / b;
* },
* observe({
* onStart: (data) => console.log("START:", data),
* onSuccess: (data) => console.log("SUCCESS:", data),
* onError: (data) => console.error("ERROR:", data),
* onFinally: (data) => console.log("FINALLY:", data),
* })
* )
* .invoke(20, 10);
* // Will log when the function execution has started and the arguments.
* // Will log if the function succeded, the arguments and the return value.
* // Will log if the function errored, arguments and the error.
* // Will log the execution time and arguments
* ```
*/
export declare function observe<TParameters extends unknown[], TReturn, TContext extends HookContext>(settings: NoInfer<ObserveCallbacks<TParameters, TReturn, TContext>>): AsyncMiddlewareFn<TParameters, TReturn, TContext>;