class Temporalio::Worker::WorkflowExecutor
implementation. The only implementation that is currently accepted is {WorkflowExecutor::ThreadPool}.
Workflow executor that executes workflow tasks. Unlike {ActivityExecutor}, this class is not meant for user
def _activate(activation, worker_state, &)
def _activate(activation, worker_state, &) raise NotImplementedError end
def _validate_worker(workflow_worker, worker_state)
def _validate_worker(workflow_worker, worker_state) raise NotImplementedError end
def initialize
def initialize raise 'Cannot create custom executors' end