Struct temporal_sdk_core::protos::temporal::api::history::v1::ActivityTaskScheduledEventAttributes[][src]

pub struct ActivityTaskScheduledEventAttributes {
    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 workflow_task_completed_event_id: i64,
    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.

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.

workflow_task_completed_event_id: i64retry_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 ActivityTaskScheduledEventAttributes[src]

impl Debug for ActivityTaskScheduledEventAttributes[src]

impl Default for ActivityTaskScheduledEventAttributes[src]

impl From<ActivityTaskScheduledEventAttributes> for Attributes[src]

impl Message for ActivityTaskScheduledEventAttributes[src]

impl PartialEq<ActivityTaskScheduledEventAttributes> for ActivityTaskScheduledEventAttributes[src]

impl StructuralPartialEq for ActivityTaskScheduledEventAttributes[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]