Struct temporal_sdk_core::protos::temporal::api::command::v1::ScheduleActivityTaskCommandAttributes[][src]

pub struct ScheduleActivityTaskCommandAttributes {
    pub activity_id: String,
    pub activity_type: Option<ActivityType>,
    pub namespace: String,
    pub task_queue: Option<TaskQueue>,
    pub header: Option<Header>,
    pub input: Option<Payloads>,
    pub schedule_to_close_timeout: Option<Duration>,
    pub schedule_to_start_timeout: Option<Duration>,
    pub start_to_close_timeout: Option<Duration>,
    pub heartbeat_timeout: Option<Duration>,
    pub retry_policy: Option<RetryPolicy>,
}

Fields

activity_id: Stringactivity_type: Option<ActivityType>namespace: Stringtask_queue: Option<TaskQueue>header: Option<Header>input: Option<Payloads>schedule_to_close_timeout: Option<Duration>

(– api-linter: core::0140::prepositions=disabled aip.dev/not-precedent: “to” is used to indicate interval. –) Indicates how long the caller is willing to wait for an activity completion. Limits for how long retries are happening. Either this or start_to_close_timeout_seconds must be specified. When not specified defaults to the workflow execution timeout.

schedule_to_start_timeout: Option<Duration>

(– api-linter: core::0140::prepositions=disabled aip.dev/not-precedent: “to” is used to indicate interval. –) Limits time an activity task can stay in a task queue before a worker picks it up. This timeout is always non retryable as all a retry would achieve is to put it back into the same queue. Defaults to schedule_to_close_timeout_seconds or workflow execution timeout if not specified.

start_to_close_timeout: Option<Duration>

(– api-linter: core::0140::prepositions=disabled aip.dev/not-precedent: “to” is used to indicate interval. –) Maximum time an activity is allowed to execute after a pick up by a worker. This timeout is always retryable. Either this or schedule_to_close_timeout_seconds must be specified.

heartbeat_timeout: Option<Duration>

Maximum time between successful worker heartbeats.

retry_policy: Option<RetryPolicy>

Activities are provided by a default retry policy controlled through the service dynamic configuration. Retries are happening up to schedule_to_close_timeout. To disable retries set retry_policy.maximum_attempts to 1.

Trait Implementations

impl Clone for ScheduleActivityTaskCommandAttributes[src]

impl Debug for ScheduleActivityTaskCommandAttributes[src]

impl Default for ScheduleActivityTaskCommandAttributes[src]

impl From<ScheduleActivityTaskCommandAttributes> for Attributes[src]

impl Message for ScheduleActivityTaskCommandAttributes[src]

impl PartialEq<ScheduleActivityTaskCommandAttributes> for ScheduleActivityTaskCommandAttributes[src]

impl StructuralPartialEq for ScheduleActivityTaskCommandAttributes[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> FutureExt for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]