com.kemichal.functionqueue
The AsyncFunctionQueue allows you to queue up a series of functions to run. The functions is run one at a time (sequentially) and will not block the current thread (asynchronously).
AsyncFunctionQueue
if exceptions thrown in functions should be rethrown
the execution context on which the function is run
Queues a function to be run sometime in the future.
the function to run
The
AsyncFunctionQueueallows you to queue up a series of functions to run. The functions is run one at a time (sequentially) and will not block the current thread (asynchronously).