Custom functions in Scripting Rules
In Scripting Rules, you can use functions as standard in JavaScript. The definition of the function must be before calling it.
Without methods of class DR
If you use methods of the DR class in a custom function, then the function must be asynchronous. Indicated by the key call to async and the call to the await function. DR class methods are automatically set to await, but you can specify it there yourself to make the code clearer for you.
Without await for methods of class DR
With await for methods of class DR
Using custom functions to make parallel API calls
In the example below we first get an array of item names, we then define a function to make the asynchronous API call to a given item's name endpoint. After that we push all of the item calls into an empty array, which we use Promise.all on, giving us an array of results.
You can also use this pattern with DR.Solve() to call the DecisionRules Solver for many rules at once. This approach can however overburden the server and result in errors when making too many calls to the Solver at once.
Last updated