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, &)

@!visibility private
def _activate(activation, worker_state, &)
  raise NotImplementedError
end

def _validate_worker(workflow_worker, worker_state)

@!visibility private
def _validate_worker(workflow_worker, worker_state)
  raise NotImplementedError
end

def initialize

@!visibility private
def initialize
  raise 'Cannot create custom executors'
end