yoonite-saga
Version:
> Orchestration de workflows transactionnels avec gestion de compensation (pattern Saga)
7 lines (6 loc) • 369 B
TypeScript
import { SagaBuilder } from "./saga-builder";
import { SagaProcessor } from "./saga-processor";
import { Compensation, Condition, Invoke } from "./types/invoke.type";
import { SagaStep } from "./types/saga-step.type";
import { SagaResponse } from "./types/saga-response";
export { Compensation, Condition, Invoke, SagaStep, SagaResponse, SagaBuilder, SagaProcessor, };