![]() |
Zeebe C# Client 2.9.0
C# Client to communicate with an Zeebe Gateway
|
Public Member Functions | |
IZeebeSecureClientBuilder | AllowUntrustedCertificates () |
DANGER: This allows untrusted certificates for the gRPC connection with Zeebe. This setting tells the client to allow to use untrusted certificates in the underlying SocketHttpHandler. For further details see https://github.com/dotnet/runtime/issues/42482. This might be useful for testing. | |
IZeebeClientFinalBuildStep | UseAccessToken (string accessToken) |
Client should use the given access token to authenticate with. | |
IZeebeClientFinalBuildStep | UseAccessTokenSupplier (IAccessTokenSupplier supplier) |
Client should use an access token to authenticate with and the given supplier should be used to receive the token. | |
![]() | |
IZeebeClientFinalBuildStep | UseKeepAlive (TimeSpan keepAlive) |
Uses the given time interval to determine when to send a keepalive ping to the gateway. The default is 30 seconds. | |
IZeebeClientFinalBuildStep | UseRetrySleepDurationProvider (Func< int, TimeSpan > sleepDurationProvider) |
Uses the given duration provider for the send retries. On each retry, the duration to wait is calculated by calling sleepDurationProvider with the current retry number (1 for first retry, 2 for second etc). | |
IZeebeClient | Build () |
Builds the client with the given configuration. | |
IZeebeSecureClientBuilder Zeebe.Client.Api.Builder.IZeebeSecureClientBuilder.AllowUntrustedCertificates | ( | ) |
DANGER: This allows untrusted certificates for the gRPC connection with Zeebe. This setting tells the client to allow to use untrusted certificates in the underlying SocketHttpHandler. For further details see https://github.com/dotnet/runtime/issues/42482. This might be useful for testing.
IZeebeClientFinalBuildStep Zeebe.Client.Api.Builder.IZeebeSecureClientBuilder.UseAccessToken | ( | string | accessToken | ) |
Client should use the given access token to authenticate with.
accessToken | the access token which is used for authentication. |
IZeebeClientFinalBuildStep Zeebe.Client.Api.Builder.IZeebeSecureClientBuilder.UseAccessTokenSupplier | ( | IAccessTokenSupplier | supplier | ) |
Client should use an access token to authenticate with and the given supplier should be used to receive the token.
supplier | the access token supplier which is called to supplied the access token. |