-
Notifications
You must be signed in to change notification settings - Fork 146
Expand file tree
/
Copy pathexecution-usage.ts
More file actions
29 lines (27 loc) · 1.13 KB
/
Copy pathexecution-usage.ts
File metadata and controls
29 lines (27 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { Effect } from "effect";
import type * as Cause from "effect/Cause";
import type { ExecutionEngine } from "@executor-js/execution";
export const withExecutionUsageTracking = <E extends Cause.YieldableError>(
organizationId: string,
engine: ExecutionEngine<E>,
trackUsage: (organizationId: string) => void,
): ExecutionEngine<E> => ({
execute: (code, options) =>
engine
.execute(code, options)
.pipe(Effect.tap(() => Effect.sync(() => trackUsage(organizationId)))),
executeWithPause: (code) =>
engine
.executeWithPause(code)
.pipe(Effect.tap(() => Effect.sync(() => trackUsage(organizationId)))),
startCell: (code, options) =>
engine
.startCell(code, options)
.pipe(Effect.tap(() => Effect.sync(() => trackUsage(organizationId)))),
waitCell: (cellId, options) => engine.waitCell(cellId, options),
terminateCell: (cellId) => engine.terminateCell(cellId),
// resume doesn't count as usage
resume: (executionId, response) => engine.resume(executionId, response),
getPausedExecution: (executionId) => engine.getPausedExecution(executionId),
getDescription: engine.getDescription,
});