Whatever message this page gives is out now! Go check it out!
future.thenRun(action)| Parameter | Description |
|---|---|
| action | Required. A function with no parameters that performs work (void semantics). |
<cfscript>
runAsync(function() { return 1; })
.thenRun(function() { variables.flag = true; })
.get();
writeOutput(variables.flag); // true
</cfscript>