![]() |
Zeebe C# Client 2.9.0
C# Client to communicate with an Zeebe Gateway
|
Public Member Functions | |
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. | |
IZeebeClient Zeebe.Client.Api.Builder.IZeebeClientFinalBuildStep.Build | ( | ) |
Builds the client with the given configuration.
IZeebeClientFinalBuildStep Zeebe.Client.Api.Builder.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.
This is an optional configuration.
keepAlive | the timespan between keep alive requests. |
IZeebeClientFinalBuildStep Zeebe.Client.Api.Builder.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).
This is an optional configuration. Per default the wait time provider provides base two wait time, 2^1 seconds, 2^2 seconds, 2^3 seconds etc. until one minute is reached.
sleepDurationProvider | The function that provides the duration to wait for for a particular retry attempt. |