Package io.temporal.api.namespace.v1
Interface NamespaceInfo.CapabilitiesOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
NamespaceInfo.Capabilities,NamespaceInfo.Capabilities.Builder
- Enclosing class:
- NamespaceInfo
public static interface NamespaceInfo.CapabilitiesOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetAsyncUpdate()True if the namespace supports async updatebooleangetEagerWorkflowStart()True if the namespace supports eager workflow start.booleangetSyncUpdate()True if the namespace supports sync updatebooleangetWorkerHeartbeats()True if the namespace supports worker heartbeats-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEagerWorkflowStart
boolean getEagerWorkflowStart()
True if the namespace supports eager workflow start.
bool eager_workflow_start = 1;- Returns:
- The eagerWorkflowStart.
-
getSyncUpdate
boolean getSyncUpdate()
True if the namespace supports sync update
bool sync_update = 2;- Returns:
- The syncUpdate.
-
getAsyncUpdate
boolean getAsyncUpdate()
True if the namespace supports async update
bool async_update = 3;- Returns:
- The asyncUpdate.
-
getWorkerHeartbeats
boolean getWorkerHeartbeats()
True if the namespace supports worker heartbeats
bool worker_heartbeats = 4;- Returns:
- The workerHeartbeats.
-
-