Threading/Async
var threadName = createGUID();
cfthread( action="run" name=threadName) {
//Thread body
}
cfthread( action="terminate" name=threadName);AsyncManager
// Parallel Executions
async().all(
() => hyper.post( "/somewhere" ),
() => hyper.post( "/somewhereElse" ),
() => hyper.post( "/another" )
).then( (results)=> logResults( results ) );Was this helpful?