Interface RetryCountAccessor.RetryCountBuilder<B extends RetryCountAccessor.RetryCountBuilder<B>>

Type Parameters:
B - The builder to return in order to be able to apply multiple build operations.
Enclosing interface:
RetryCountAccessor

public static interface RetryCountAccessor.RetryCountBuilder<B extends RetryCountAccessor.RetryCountBuilder<B>>
Provides a builder method for a retries count property returning the builder for applying multiple build operations. A retry count is the current count of retries being initiated.
  • Method Summary

    Modifier and Type
    Method
    Description
    withRetryCount(int aRetryCount)
    Sets the count of retries for the retries count property.
  • Method Details

    • withRetryCount

      B withRetryCount(int aRetryCount)
      Sets the count of retries for the retries count property. A retry count is the current count of retries being initiated.
      Parameters:
      aRetryCount - The count of retries to be stored by the count of retries count property.
      Returns:
      The builder for applying multiple build operations.