Package io.camunda.zeebe.client
Interface ZeebeClientConfiguration
-
- All Known Implementing Classes:
ZeebeClientBuilderImpl
public interface ZeebeClientConfiguration
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCaCertificatePath()CredentialsProvidergetCredentialsProvider()DurationgetDefaultJobPollInterval()DurationgetDefaultJobTimeout()intgetDefaultJobWorkerMaxJobsActive()StringgetDefaultJobWorkerName()DurationgetDefaultMessageTimeToLive()DurationgetDefaultRequestTimeout()StringgetGatewayAddress()List<io.grpc.ClientInterceptor>getInterceptors()JsonMappergetJsonMapper()DurationgetKeepAlive()intgetNumJobWorkerExecutionThreads()booleanisPlaintextConnectionEnabled()
-
-
-
Method Detail
-
getGatewayAddress
String getGatewayAddress()
-
getNumJobWorkerExecutionThreads
int getNumJobWorkerExecutionThreads()
-
getDefaultJobWorkerMaxJobsActive
int getDefaultJobWorkerMaxJobsActive()
-
getDefaultJobWorkerName
String getDefaultJobWorkerName()
-
getDefaultJobTimeout
Duration getDefaultJobTimeout()
-
getDefaultJobPollInterval
Duration getDefaultJobPollInterval()
-
getDefaultMessageTimeToLive
Duration getDefaultMessageTimeToLive()
-
getDefaultRequestTimeout
Duration getDefaultRequestTimeout()
-
isPlaintextConnectionEnabled
boolean isPlaintextConnectionEnabled()
- See Also:
ZeebeClientBuilder.usePlaintext()
-
getCaCertificatePath
String getCaCertificatePath()
-
getCredentialsProvider
CredentialsProvider getCredentialsProvider()
-
getKeepAlive
Duration getKeepAlive()
- See Also:
ZeebeClientBuilder.keepAlive(Duration)
-
getInterceptors
List<io.grpc.ClientInterceptor> getInterceptors()
-
getJsonMapper
JsonMapper getJsonMapper()
-
-