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 String
getCaCertificatePath()
CredentialsProvider
getCredentialsProvider()
Duration
getDefaultJobPollInterval()
Duration
getDefaultJobTimeout()
int
getDefaultJobWorkerMaxJobsActive()
String
getDefaultJobWorkerName()
Duration
getDefaultMessageTimeToLive()
Duration
getDefaultRequestTimeout()
String
getGatewayAddress()
List<io.grpc.ClientInterceptor>
getInterceptors()
JsonMapper
getJsonMapper()
Duration
getKeepAlive()
int
getNumJobWorkerExecutionThreads()
boolean
isPlaintextConnectionEnabled()
-
-
-
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()
-
-