This page describes all problems, tasks and solution approaches regarding tracing of method invocations in the same thread.
...
Currently the sequence sensor is implemented as a container, which collects all sensor data (e.g. from timer sensors) starting from an defined start point (execution of a predefined method).
This collected data is chronologically ordered, to allow to trace the invocation sequence.
...
This is not suitable for asynchronous methods. @Stefan and Patrice: Am i right here?
(Also see continues sending in IS advanced notes for better understanding)
New approaches /
...
idea
Idea:
On each hook, the Id of the currentThread would be acquired. So it could be saved when an method was executed by what thread.
(How much overhead would this generate?)
Questions / Possible Problems
...