| Modifier and Type | Method and Description |
|---|---|
static <X extends Exception> |
Runner.parallel(int count,
XRunnable<X> xRunnable)
Deprecated.
use
Attempts.tryParallel(int, XRunnable) instead |
static <X extends Exception> |
Attempts.runParallel(int count,
XRunnable<X> xRunnable)
Repeatedly performs a specific operation in parallel threads.
|
static <X extends Exception> |
Attempts.runSerial(int count,
XRunnable<X> xRunnable)
Repeatedly performs a specific operation in the current thread.
|
static <X extends Exception> |
Runner.sequential(int count,
XRunnable<X> xRunnable)
Deprecated.
use
Attempts.trySerial(int, XRunnable) instead |
static <X extends Exception> |
Attempts.tryParallel(int count,
XRunnable<X> xRunnable)
Repeatedly performs a specific operation in parallel threads.
|
static <X extends Exception> |
Attempts.trySerial(int count,
XRunnable<X> xRunnable)
Repeatedly performs a specific operation in the current thread.
|
Copyright © 2020. All rights reserved.