swf-runtime 1.0.0-alpha9

Runtime engine for Serverless Workflow DSL — execute, validate, and orchestrate workflows
Documentation
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-retry-reusable
  version: '0.1.0'
use:
  retries:
    default:
      delay:
        milliseconds: 10
      backoff:
        constant: {}
      limit:
        attempt:
          count: 3
do:
  - tryTask:
      try:
        - alwaysFail:
            raise:
              error:
                type: https://serverlessworkflow.io/spec/1.0.0/errors/communication
                title: Communication Error
      catch:
        errors:
          with:
            type: communication
        retry: default