Retrieve execution token

Is there any way to retrieve the execution token from a delegate code execution?
Can I know which thread is executing the Java Delegate/Execution Listener?

Thanks for your time,
Gonzalo

Hi @gcalvo,

in delegate you have an execution instance available and get ID of it using corresponding getter. To figure out thread id you would do something like Thread.currentThread().getId();

Does that help you?
Askar