pub struct Worker { /* private fields */ }Expand description
A worker polls on a certain task queue
Implementations§
Source§impl Worker
impl Worker
Sourcepub async fn validate(&self) -> Result<NamespaceInfo, WorkerValidationError>
pub async fn validate(&self) -> Result<NamespaceInfo, WorkerValidationError>
Validate that the worker can properly connect to server, plus any other validation that needs to be done asynchronously. Lang SDKs should call this function once before calling any others.
Sourcepub fn replace_client(&self, new_connection: Connection) -> Result<(), Error>
pub fn replace_client(&self, new_connection: Connection) -> Result<(), Error>
Replace client.
For eager workflow purposes, this new client will now apply to future eager start requests and the older client will not. Note, if this registration fails, the worker heartbeat will also not be registered.
For worker heartbeat, this will remove an existing shared worker if it is the last worker of the old client and create a new nexus worker if it’s the first client of the namespace on the new client.
Sourcepub async fn shutdown(&self)
pub async fn shutdown(&self)
Initiates async shutdown procedure, eventually ceases all polling of the server and shuts
down this worker. Worker::poll_workflow_activation and Worker::poll_activity_task should
be called until both return a ShutDown error to ensure that all outstanding work is
complete. This means that the lang sdk will need to call
Worker::complete_workflow_activation and Worker::complete_activity_task for those
workflows & activities until they are done. At that point, the lang SDK can end the process,
or drop the Worker instance via Worker::finalize_shutdown, which will close the
connection and free resources. If you have set WorkerConfig::task_types to exclude
WorkerTaskTypes::activity_only(), you may skip calling Worker::poll_activity_task.
Lang implementations should use Worker::initiate_shutdown followed by Worker::finalize_shutdown.
Sourcepub async fn finalize_shutdown(self)
pub async fn finalize_shutdown(self)
Completes shutdown and frees all resources. You should avoid simply dropping workers, as this does not allow async tasks to report any panics that may have occurred cleanly.
This should be called only after Worker::shutdown has resolved and/or both polling
functions have returned ShutDown errors.
Sourcepub async fn cached_workflows(&self) -> usize
pub async fn cached_workflows(&self) -> usize
Returns number of currently cached workflows
Sourcepub async fn poll_activity_task(&self) -> Result<ActivityTask, PollError>
pub async fn poll_activity_task(&self) -> Result<ActivityTask, PollError>
Ask the worker for some work, returning an ActivityTask. It is then the language SDK’s responsibility to call the appropriate activity code with the provided inputs. Blocks indefinitely until such work is available or Worker::shutdown is called.
Do not call poll concurrently. It handles polling the server concurrently internally.
Local activities are returned first before polling the server if there are any.
Sourcepub fn record_activity_heartbeat(&self, details: ActivityHeartbeat)
pub fn record_activity_heartbeat(&self, details: ActivityHeartbeat)
Notify the Temporal service that an activity is still alive. Long running activities that
take longer than activity_heartbeat_timeout to finish must call this function in order to
report progress, otherwise the activity will timeout and a new attempt will be scheduled.
The first heartbeat request will be sent immediately, subsequent rapid calls to this function will result in heartbeat requests being aggregated and the last one received during the aggregation period will be sent to the server, where that period is defined as half the heartbeat timeout.
Unlike Java/Go SDKs we do not return cancellation status as part of heartbeat response and instead send it as a separate activity task to the lang, decoupling heartbeat and cancellation processing.
For now activity still need to send heartbeats if they want to receive cancellation requests. In the future we will change this and will dispatch cancellations more proactively. Note that this function does not block on the server call and returns immediately. Underlying validation errors are swallowed and logged, this has been agreed to be optimal behavior for the user as we don’t want to break activity execution due to badly configured heartbeat options.
Sourcepub async fn complete_activity_task(
&self,
completion: ActivityTaskCompletion,
) -> Result<(), CompleteActivityError>
pub async fn complete_activity_task( &self, completion: ActivityTaskCompletion, ) -> Result<(), CompleteActivityError>
Tell the worker that an activity has finished executing. May (and should) be freely called concurrently.
Sourcepub async fn poll_workflow_activation(
&self,
) -> Result<WorkflowActivation, PollError>
pub async fn poll_workflow_activation( &self, ) -> Result<WorkflowActivation, PollError>
Ask the worker for some work, returning a WorkflowActivation. It is then the language SDK’s responsibility to call the appropriate workflow code with the provided inputs. Blocks indefinitely until such work is available or Worker::shutdown is called.
It is important to understand that all activations must be responded to. There can only be one outstanding activation for a particular run of a workflow at any time. If an activation is not responded to, it will cause that workflow to become stuck forever.
See WorkflowActivation for more details on the expected behavior of lang w.r.t activation & job processing.
Do not call poll concurrently. It handles polling the server concurrently internally.
Sourcepub async fn complete_workflow_activation(
&self,
completion: WorkflowActivationCompletion,
) -> Result<(), CompleteWfError>
pub async fn complete_workflow_activation( &self, completion: WorkflowActivationCompletion, ) -> Result<(), CompleteWfError>
Tell the worker that a workflow activation has completed. May (and should) be freely called concurrently. The future may take some time to resolve, as fetching more events might be necessary for completion to… complete - thus SDK implementers should make sure they do not serialize completions.
Sourcepub async fn poll_nexus_task(&self) -> Result<NexusTask, PollError>
pub async fn poll_nexus_task(&self) -> Result<NexusTask, PollError>
Ask the worker for some nexus related work. It is then the language SDK’s responsibility to call the appropriate nexus operation handler code with the provided inputs. Blocks indefinitely until such work is available or Worker::shutdown is called.
All tasks must be responded to for shutdown to complete.
Do not call poll concurrently. It handles polling the server concurrently internally.
Sourcepub async fn complete_nexus_task(
&self,
completion: NexusTaskCompletion,
) -> Result<(), CompleteNexusError>
pub async fn complete_nexus_task( &self, completion: NexusTaskCompletion, ) -> Result<(), CompleteNexusError>
Tell the worker that a nexus task has completed. May (and should) be freely called concurrently.
Sourcepub fn request_workflow_eviction(&self, run_id: &str)
pub fn request_workflow_eviction(&self, run_id: &str)
Request that a workflow be evicted by its run id. This will generate a workflow activation with the eviction job inside it to be eventually returned by Worker::poll_workflow_activation. If the workflow had any existing outstanding activations, such activations are invalidated and subsequent completions of them will do nothing and log a warning.
Sourcepub fn get_config(&self) -> &WorkerConfig
pub fn get_config(&self) -> &WorkerConfig
Return this worker’s config
Sourcepub fn get_namespace_capabilities(&self) -> &NamespaceCapabilities
pub fn get_namespace_capabilities(&self) -> &NamespaceCapabilities
Returns the namespace capabilities discovered during Worker::validate.
Sourcepub fn initiate_shutdown(&self)
pub fn initiate_shutdown(&self)
Initiate shutdown, including spawning the ShutdownWorker RPC so the server can complete
in-flight polls. The RPC runs in a background task and is awaited in Worker::shutdown.
You can then wait on shutdown or Worker::finalize_shutdown.
Sourcepub fn worker_instance_key(&self) -> Uuid
pub fn worker_instance_key(&self) -> Uuid
Unique identifier for this worker instance. This must be stable across the worker’s lifetime and unique per instance.
Auto Trait Implementations§
impl !Freeze for Worker
impl !RefUnwindSafe for Worker
impl Send for Worker
impl Sync for Worker
impl Unpin for Worker
impl UnsafeUnpin for Worker
impl !UnwindSafe for Worker
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a tonic::Request