UNPKG

yoonite-saga

Version:

> Orchestration de workflows transactionnels avec gestion de compensation (pattern Saga)

16 lines (14 loc) 384 B
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, };