Interface ConcurrentExecutor

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface ConcurrentExecutor
  • Field Details

  • Method Details

    • execute

      <T> reactor.core.publisher.Mono<T> execute(reactor.core.publisher.Mono<T> mono, ConcurrentExecutor.ConcurrencyStrategy concurrencyStrategy, reactor.core.publisher.Mono<T> defaultValueProvider)
    • execute

      default <T> reactor.core.publisher.Mono<T> execute(reactor.core.publisher.Mono<T> mono)
    • execute

      default <T> reactor.core.publisher.Mono<T> execute(reactor.core.publisher.Mono<T> mono, reactor.core.publisher.Mono<T> defaultValueProvider)
    • concurrentExecutor

      static ConcurrentExecutor concurrentExecutor()
    • concurrentExecutor

      static ConcurrentExecutor concurrentExecutor(long maxAttempts)
    • concurrentExecutor

      static ConcurrentExecutor concurrentExecutor(long maxAttempts, Duration minBackoff)
    • concurrentExecutor

      static ConcurrentExecutor concurrentExecutor(reactor.util.retry.RetrySpec retrySpec)
    • concurrentExecutor

      static ConcurrentExecutor concurrentExecutor(reactor.util.retry.RetryBackoffSpec retrySpec)
    • concurrentExecutor

      static ConcurrentExecutor concurrentExecutor(reactor.util.retry.RetryBackoffSpec retrySpec, reactor.core.scheduler.Scheduler retryScheduler)