Class ActivityOptions.Builder

  • Enclosing class:
    ActivityOptions

    public static final class ActivityOptions.Builder
    extends java.lang.Object
    • Method Detail

      • setScheduleToCloseTimeout

        public ActivityOptions.Builder setScheduleToCloseTimeout​(java.time.Duration scheduleToCloseTimeout)
        Total time that a workflow is willing to wait for Activity to complete.

        ScheduleToCloseTimeout limits the total time of an Activity's execution including retries (use StartToCloseTimeout to limit the time of a single attempt).

        Either this option or StartToClose is required.

        Defaults to unlimited.

      • setScheduleToStartTimeout

        public ActivityOptions.Builder setScheduleToStartTimeout​(java.time.Duration scheduleToStartTimeout)
        Time that the Activity Task can stay in the Task Queue before it is picked up by a Worker. Do not specify this timeout unless using host specific Task Queues for Activity Tasks are being used for routing.

        ScheduleToStartTimeout is always non-retryable. Retrying after this timeout doesn't make sense as it would just put the Activity Task back into the same Task Queue.

        Defaults to unlimited.

      • setStartToCloseTimeout

        public ActivityOptions.Builder setStartToCloseTimeout​(java.time.Duration startToCloseTimeout)
        Maximum time of a single Activity execution attempt.

        Note that the Temporal Server doesn't detect Worker process failures directly. It relies on this timeout to detect that an Activity that didn't complete on time. So this timeout should be as short as the longest possible execution of the Activity body. Potentially long-running Activities must specify HeartbeatTimeout and call ActivityExecutionContext.heartbeat(Object) periodically for timely failure detection.

        If ScheduleToClose is not provided then this timeout is required.

        Defaults to the ScheduleToCloseTimeout value.

      • setTaskQueue

        public ActivityOptions.Builder setTaskQueue​(java.lang.String taskQueue)
        Task queue to use when dispatching activity task to a worker. By default, it is the same task list name the workflow was started with.
      • setRetryOptions

        public ActivityOptions.Builder setRetryOptions​(RetryOptions retryOptions)
        RetryOptions that define how activity is retried in case of failure. If this is not set, then the server-defined default activity retry policy will be used. To ensure zero retries, set maximum attempts to 1.
      • mergeMethodRetry

        public ActivityOptions.Builder mergeMethodRetry​(MethodRetry r)
        Properties that are set on this builder take precedence over ones found in the annotation.
      • validateAndBuildWithDefaults

        public ActivityOptions validateAndBuildWithDefaults()