Module: Temporalio::Client::Schedule::OverlapPolicy

Defined in:
lib/temporalio/client/schedule.rb

Overview

Enumerate that controls what happens when a workflow would be started by a schedule but one is already running.

Constant Summary collapse

SKIP =

Don’t start anything. When the workflow completes, the next scheduled event after that time will be considered.

Api::Enums::V1::ScheduleOverlapPolicy::SCHEDULE_OVERLAP_POLICY_SKIP
BUFFER_ONE =

Start the workflow again soon as the current one completes, but only buffer one start in this way. If another start is supposed to happen when the workflow is running, and one is already buffered, then only the first one will be started after the running workflow finishes.

Api::Enums::V1::ScheduleOverlapPolicy::SCHEDULE_OVERLAP_POLICY_BUFFER_ONE
BUFFER_ALL =

Buffer up any number of starts to all happen sequentially, immediately after the running workflow completes.

Api::Enums::V1::ScheduleOverlapPolicy::SCHEDULE_OVERLAP_POLICY_BUFFER_ALL
CANCEL_OTHER =

If there is another workflow running, cancel it, and start the new one after the old one completes cancellation.

Api::Enums::V1::ScheduleOverlapPolicy::SCHEDULE_OVERLAP_POLICY_CANCEL_OTHER
TERMINATE_OTHER =

If there is another workflow running, terminate it and start the new one immediately.

Api::Enums::V1::ScheduleOverlapPolicy::SCHEDULE_OVERLAP_POLICY_TERMINATE_OTHER
ALLOW_ALL =

Start any number of concurrent workflows. Note that with this policy, last completion result and last failure will not be available since workflows are not sequential.

Api::Enums::V1::ScheduleOverlapPolicy::SCHEDULE_OVERLAP_POLICY_ALLOW_ALL