@temporalio/worker
Version:
Temporal.io SDK Worker sub-package
15 lines (14 loc) • 345 B
TypeScript
/**
* Request from parent thread, the worker thread should signal a "runner" when it gets this request.
*/
export interface Request {
type: 'wft-started';
/**
* Event ID of the started request.
*/
eventId: number;
/**
* Used to signal back that the request is complete.
*/
responseBuffer: Int32Array;
}