Call a microflow asynchronously after commit

2
Is that possible? It should perform a check, but user does not have to wait for that. Results of the check are handled on another time by another person. The alternative is ofcourse a scheduled task.
asked
1 answers
2

Java actions! Just add a synchronous microflow with a single java action call:

I don't have the API handy, but I believe it's something like

Core.executeASync(String microflowname, IContext context, ... variables)
answered