@shahadul-17/dispatcher
Version:
Defines a mechanism for parallel processing and CPU intensive tasks in Node.js
9 lines • 383 B
TypeScript
import { ServiceType } from "@shahadul-17/service-provider";
export type DispatchableTaskInformation<ServiceInstanceType, ReturnType> = {
methodName: string;
methodArguments?: Array<any>;
serviceType: ServiceType<ServiceInstanceType>;
serviceScopeName?: string;
returnType: ServiceType<ReturnType>;
};
//# sourceMappingURL=dispatchable-task-information.t.d.ts.map