Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var DefaultOptions = Options{ WorkflowWorkerOptions: WorkflowWorkerOptions{ WorkflowPollers: 2, WorkflowPollingInterval: 200 * time.Millisecond, MaxParallelWorkflowTasks: 0, WorkflowHeartbeatInterval: 25 * time.Second, WorkflowExecutorCacheSize: 128, WorkflowExecutorCacheTTL: time.Second * 10, WorkflowExecutorCache: nil, }, ActivityWorkerOptions: ActivityWorkerOptions{ ActivityPollers: 2, ActivityPollingInterval: 200 * time.Millisecond, MaxParallelActivityTasks: 0, ActivityHeartbeatInterval: 25 * time.Second, }, }
Functions ¶
This section is empty.
Types ¶
type ActivityWorkerOptions ¶ added in v0.19.0
type ActivityWorkerOptions struct { // ActivityPollers is the number of pollers to start. Defaults to 2. ActivityPollers int // MaxParallelActivityTasks determines the maximum number of concurrent activity tasks processed // by the worker. The default is 0 which is no limit. MaxParallelActivityTasks int // ActivityHeartbeatInterval is the interval between heartbeat attempts for activity tasks. Defaults // to 25 seconds ActivityHeartbeatInterval time.Duration // ActivityPollingInterval is the interval between polling for new activity tasks. // Note that if you use a backend that can wait for tasks to be available (e.g. redis) this field has no effect. // Defaults to 200ms. ActivityPollingInterval time.Duration // ActivityQueues are the queues the worker listens to ActivityQueues []workflow.Queue }
type Options ¶
type Options struct { WorkflowWorkerOptions ActivityWorkerOptions }
type Worker ¶
type Worker struct {
// contains filtered or unexported fields
}
func NewActivityWorker ¶ added in v0.19.0
func NewActivityWorker(backend backend.Backend, options *ActivityWorkerOptions) *Worker
NewActivityWorker creates a worker that only processes activities.
func NewWorkflowWorker ¶ added in v0.19.0
func NewWorkflowWorker(backend backend.Backend, options *WorkflowWorkerOptions) *Worker
NewWorkflowWorker creates a worker that only processes workflows.
func (*Worker) RegisterActivity ¶ added in v0.17.0
RegisterActivity registers an activity with the worker's registry.
func (*Worker) RegisterWorkflow ¶ added in v0.17.0
RegisterWorkflow registers a workflow with the worker's registry.
func (*Worker) Start ¶
Start starts the worker.
To stop the worker, cancel the context passed to Start. To wait for completion of the active tasks, call `WaitForCompletion`.
func (*Worker) WaitForCompletion ¶ added in v0.2.0
WaitForCompletion waits for all active tasks to complete.
type WorkflowWorkerOptions ¶ added in v0.19.0
type WorkflowWorkerOptions struct { // WorkflowsPollers is the number of pollers to start. Defaults to 2. WorkflowPollers int // MaxParallelWorkflowTasks determines the maximum number of concurrent workflow tasks processed // by the worker. The default is 0 which is no limit. MaxParallelWorkflowTasks int // WorkflowHeartbeatInterval is the interval between heartbeat attempts on workflow tasks. Defaults // to 25 seconds WorkflowHeartbeatInterval time.Duration // WorkflowPollingInterval is the interval between polling for new workflow tasks. // Note that if you use a backend that can wait for tasks to be available (e.g. redis) this field has no effect. // Defaults to 200ms. WorkflowPollingInterval time.Duration // WorkflowExecutorCache is the max size of the workflow executor cache. Defaults to 128 WorkflowExecutorCacheSize int // WorkflowExecutorCache is the max TTL of the workflow executor cache. Defaults to 10 seconds WorkflowExecutorCacheTTL time.Duration // WorkflowExecutorCache is the cache to use for workflow executors. If nil, a default cache implementation // will be used. WorkflowExecutorCache executor.Cache // WorkflowQueues are the queue the worker listens to WorkflowQueues []workflow.Queue }
Click to show internal directories.
Click to hide internal directories.