Uses of Interface
io.camunda.zeebe.client.api.worker.BackoffSupplier
-
Packages that use BackoffSupplier Package Description io.camunda.zeebe.client.api.worker io.camunda.zeebe.client.impl.worker -
-
Uses of BackoffSupplier in io.camunda.zeebe.client.api.worker
Methods in io.camunda.zeebe.client.api.worker that return BackoffSupplier Modifier and Type Method Description BackoffSupplier
ExponentialBackoffBuilder. build()
Methods in io.camunda.zeebe.client.api.worker with parameters of type BackoffSupplier Modifier and Type Method Description JobWorkerBuilderStep1.JobWorkerBuilderStep3
JobWorkerBuilderStep1.JobWorkerBuilderStep3. backoffSupplier(BackoffSupplier backoffSupplier)
Sets the backoff supplier. -
Uses of BackoffSupplier in io.camunda.zeebe.client.impl.worker
Classes in io.camunda.zeebe.client.impl.worker that implement BackoffSupplier Modifier and Type Class Description class
ExponentialBackoff
An implementation ofBackoffSupplier
which uses a simple formula, multiplying the previous delay with an increasing multiplier and adding some jitter to avoid multiple clients polling at the same time even with back off.Fields in io.camunda.zeebe.client.impl.worker declared as BackoffSupplier Modifier and Type Field Description static BackoffSupplier
JobWorkerBuilderImpl. DEFAULT_BACKOFF_SUPPLIER
Methods in io.camunda.zeebe.client.impl.worker that return BackoffSupplier Modifier and Type Method Description BackoffSupplier
ExponentialBackoffBuilderImpl. build()
Methods in io.camunda.zeebe.client.impl.worker with parameters of type BackoffSupplier Modifier and Type Method Description JobWorkerBuilderStep1.JobWorkerBuilderStep3
JobWorkerBuilderImpl. backoffSupplier(BackoffSupplier backoffSupplier)
Constructors in io.camunda.zeebe.client.impl.worker with parameters of type BackoffSupplier Constructor Description JobWorkerImpl(int maxJobsActive, ScheduledExecutorService executor, Duration pollInterval, JobRunnableFactory jobHandlerFactory, JobPoller jobPoller, BackoffSupplier backoffSupplier)
-