Package io.temporal.client.schedules
Class ScheduleClientOptions
- java.lang.Object
-
- io.temporal.client.schedules.ScheduleClientOptions
-
public final class ScheduleClientOptions extends java.lang.ObjectOptions for ScheduleClient configuration.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classScheduleClientOptions.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<ContextPropagator>getContextPropagators()Get the context propagators of this clientDataConvertergetDataConverter()Get the data converters of this clientstatic ScheduleClientOptionsgetDefaultInstance()java.lang.StringgetIdentity()Get the human-readable identity of the client.java.lang.StringgetNamespace()Get the namespace this client will operate on.static ScheduleClientOptions.BuildernewBuilder()static ScheduleClientOptions.BuildernewBuilder(ScheduleClientOptions options)ScheduleClientOptions.BuildertoBuilder()
-
-
-
Method Detail
-
newBuilder
public static ScheduleClientOptions.Builder newBuilder()
-
newBuilder
public static ScheduleClientOptions.Builder newBuilder(ScheduleClientOptions options)
-
getDefaultInstance
public static ScheduleClientOptions getDefaultInstance()
-
toBuilder
public ScheduleClientOptions.Builder toBuilder()
-
getNamespace
public java.lang.String getNamespace()
Get the namespace this client will operate on.- Returns:
- Client namespace
-
getDataConverter
public DataConverter getDataConverter()
Get the data converters of this client- Returns:
- The list of data converters to use with the client.
-
getIdentity
public java.lang.String getIdentity()
Get the human-readable identity of the client.- Returns:
- The identity of the client used on some requests.
-
getContextPropagators
public java.util.List<ContextPropagator> getContextPropagators()
Get the context propagators of this client- Returns:
- The list of context propagators to use with the client.
-
-