To The Future with ColdBox Futures
You will be able to create async pipelines and futures by using the following AsyncManager
creation methods:
init( value, executor, debug, loadAppContext )
: Construct a new future. The value
argument can be the future closure/udf. You can also pass in a custom executor and some utility flags.
newFuture( [task], [executor] ):Future
: Returns a ColdBox Future. You can pass an optional task (closure/udf) and even an optional executor.
newCompletedFuture( value ):Future
: Returns a new future that is already completed with the given value.
Please note that some of the methods above will return a ColdBox Future object that is backed by Java's CompletableFuture
(https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html)
Here are the method signatures for the methods above:
There are two ways to start async computations with futures:
Via the newFuture()
constructor
Via the run()
method
The constructor is the shortcut approach and only allows for closures to be defined as the task. The run()
methods allows you to pass a CFC instance and a method
name, which will then call that method as the initial computation.
Here are the run()
method signatures:
Please note that the majority of methods take in an executor
that you can supply. This means that you can decide in which thread pool the task will execute in, or by default it will run in the ForkJoinPool
or the same thread the computation started from.
WARNING: Once you pass a closure/udf or cfc/method to the run()
methods or the constructor, the JDK will create and send the task for execution to the appropriate executor. You do not need to start the thread or issue a start command. It is implied.
The loadAppContext
is a boolean flag that allows you to load the ColdFusion (CFML) application context into the running threads. By default, this is needed if your threads will require certain things from the application context: mappings, app settings, etc. However, some times this can cause issues and slowdowns, so be careful when selecting when to load the context or not. As a rule of thumb, we would say to NOT load it, if you are doing pure computations or not requiring mappings or app settings.
For example, the ColdBox file logger uses futures and has no app context loaded, since it does not require it. It only monitors a log queue and streams the content to a file. Remember, cohesion and encapsulation. The purerer your computations are, the better and safer they will be (https://en.wikipedia.org/wiki/Pure_function)
There are also times where you need a future to be completed immediately. For this you can build a future already completed via the newCompletedFuture()
or by leveraging the complete()
function in the Future object. This can also allow you to complete the future with an initial value if you want to.
Completed futures are great for mocking and testing scenarios
There are many many methods in the Java JDK that are implemented in the ColdBox Futures. We have also added several new methods that play very nicely with our dynamic language. Here is a collection of the currently implemented methods.
Always checkout the API docs for the latest methods and signatures: https://apidocs.ortussolutions.com/coldbox/current
Method
Returns
Description
all()
Future
Allows for the parallel execution of many closures/futures or an array of closures/futures.
allApply()
Collection
Allows you to apply a function to every element of a collection: array or struct and then reconstructing the collection according to your changes. A parallel map()
anyOf()
Future
Allows for the parallel/execution of many closures/futures or an array of closures/futures, but the only returning the FASTEST future that completes. The race is on!
cancel()
Boolean
If not already completed, completes this Future with a CancellationException
.Dependent Futures that have not already completed will also complete exceptionally, with a CompletionException
caused by this CancellationException
.
complete()
Boolean
If not already completed, sets the value returned by get() and related methods to the given value.
completedFuture()
Future
Returns a new ColdBox Future that is already completed with the given value.
completeExceptionally()
Future
If not already completed, causes invocations of get() and related methods to throw the given exception. The exception type is of java.lang.RuntimeException
and you can choose the message to throw with it.
exceptionally() onException()
Future
Register an event handler for any exceptions that happen before it is registered in the future pipeline.
Whatever this function returns, will be used for the next registered functions in the pipeline.
get()
any
Waits if necessary for at most the given time for this future to complete, and then returns its result, if available.
getNative()
Java CompletableFuture
Get the native Java CompletableFuture
getNow()
any
Returns the result value (or throws any encountered exception) if completed, else returns the given defaultValue.
isCancelled()
Boolean
Flag that checks if the computation has been cancelled
isCompletedExceptionally()
Boolean
Flag that checks if the computation threw an exception
isDone()
Boolean
Flag that checks if the computation has finished
run() runAsync()
supplyAsync()
Future
Executes a runnable closure or component method via Java's CompletableFuture and gives you back a ColdBox Future:
then()
thenApply()
Future
Executed once the computation has finalized and a result is passed in to the target
thenAsync()
thenApplyAsync()
Future
Executed once the computation has finalized and a result is passed in to the target but this will execute in a separate thread. By default it uses the ForkJoin.commonPool()
but you can pass your own executor service.
thenCombine()
Future
This used when you want two Futures to run independently and do something after both are complete.
thenCompose()
Future
Returns a new CompletionStage that, when this stage completes normally, is executed with this stage as the argument to the supplied function.
withTimeout()
Future
Ability to attach a timeout to the execution of the allApply() method