final case class ZWorkflowClientOptions extends Product with Serializable

Represents Temporal workflow client options

See also

WorkflowClientOptions

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ZWorkflowClientOptions
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  6. val contextPropagators: List[ContextPropagator]
  7. val dataConverter: DataConverter
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  10. val identity: Option[String]
  11. val interceptors: List[WorkflowClientInterceptor]
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. val namespace: Option[String]
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  17. def productElementNames: Iterator[String]
    Definition Classes
    Product
  18. val queryRejectCondition: Option[QueryRejectCondition]
  19. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  20. def toJava: WorkflowClientOptions
  21. def toString(): String
    Definition Classes
    ZWorkflowClientOptions → AnyRef → Any
  22. def transformJavaOptions(f: (Builder) => Builder): ZWorkflowClientOptions

    Allows to specify options directly on the java SDK's WorkflowClientOptions.

    Allows to specify options directly on the java SDK's WorkflowClientOptions. Use it in case an appropriate withXXX method is missing

    Note

    the options specified via this method take precedence over those specified via other methods.

  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. def withContextPropagators(value: ContextPropagator*): ZWorkflowClientOptions

    value

    specifies the list of context propagators to use with the client.

  27. def withDataConverter(value: DataConverter): ZWorkflowClientOptions

    Overrides a data converter implementation used serialize workflow and activity arguments and results.

  28. def withIdentity(value: String): ZWorkflowClientOptions

    Override human readable identity of the worker.

    Override human readable identity of the worker. Identity is used to identify a worker and is recorded in the workflow history events. For example when a worker gets an activity task the correspondent ActivityTaskStarted event contains the worker identity as a field.

  29. def withInterceptors(value: WorkflowClientInterceptor*): ZWorkflowClientOptions

    Interceptor used to intercept workflow client calls.

  30. def withNamespace(value: String): ZWorkflowClientOptions

    Set the namespace

  31. def withQueryRejectCondition(value: QueryRejectCondition): ZWorkflowClientOptions

    Should a query be rejected by closed and failed workflows.

    Should a query be rejected by closed and failed workflows.

    Default is QueryRejectCondition.QUERY_REJECT_CONDITION_UNSPECIFIED which means that closed and failed workflows are still queryable.

Deprecated Value Members

  1. val binaryChecksum: Option[String]
    Annotations
    @deprecated
    Deprecated

    (Since version 0.3.0) use worker's buildId instead

  2. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

  3. def withBinaryChecksum(value: String): ZWorkflowClientOptions

    Sets worker binary checksum, which gets propagated in all history events and can be used for auto-reset assuming that every build has a new unique binary checksum.

    Sets worker binary checksum, which gets propagated in all history events and can be used for auto-reset assuming that every build has a new unique binary checksum. Can be null.

    Annotations
    @deprecated
    Deprecated

    (Since version 0.3.0) use worker's buildId instead

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped