Async script result
This page describes StackState version 4.3.
The StackState 4.3 version range is End of Life (EOL) and no longer supported. We encourage customers still running the 4.3 version range to upgrade to a more recent release.
Most API functions execute asynchronously. That means they will not directly return results. Some functions are dependent on the network or other resources in order to complete, therefore they can not immediately return results. Such asynchronous functions return an AsyncScriptResult
. The concept of an AsyncScriptResult
is modelled after how promises work in JavaScript.
Working with AsyncScriptResult.then
AsyncScriptResult.then
If the result of your script returns is an AsyncScriptResult
StackState will automatically wait for the actual result to resolve. If however you want to continue your script with the resolved result of an AsyncScriptResult
you must use the .then
method.
The .then
method expects a Groovy closure. The closure will execute as soon as the result is received. This lambda function can work with the result and return either a new AsyncScriptResult
or a simple (synchronous) result.
For example:
The Groovy script above can be shortened to:
The it
keyword is default Groovy keyword that you do not need to define a variable in which you receive your result. You might see this being used in our examples.
Chaining
Multiple asynchronous script results can be chained together. This is useful for combining for example the results of topology with telemetry.
For example:
Is equivalent to:
The above means that the results of asyncFn1
are passed to asyncFn2
, then the results of asyncFn2
in turn are passed to asyncFn3
.
Flattening
Arrays of AsyncScriptResult
are automatically flattened when returned from a .then
call. For example:
will return an array of both the result of asyncFn2
and asyncFn3
.
Transforming a list using thenCollect
thenCollect
Often it is desirable to transform a list of element coming from an AsyncScriptResult
.
Assuming ScriptApi.asyncFn1()
return an AsyncScriptResult
that contains the list [1,2,3]
, this can be transformed to [2,3,4]
in the following way:
However, since this pattern is seen so often a shortcut is available for .then { it.collect { ... }}
, which makes it possible to rewrite the above as:
Reducing with thenInject
thenInject
Arrays of AsyncScriptResult
can be automatically reduced when returned. For example:
Suppose that asyncFn1
returns a list, then subsequent thenInject
call can accumulate the result, in this case using summation.
In particular this call can be interesting for the cases where an accumulating operation returns the AsyncScriptResult
. See example below:
Handling Exceptions
It is sometimes necessary to handle exceptions raised during execution of AsyncScriptResult
. This can be achieved using catchError
function. For example:
Any result returned by the closure passed to catchError
gets automatically flattened just like .then
call.
Last updated