Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Previous inter-Thread tracing approaches

Thread Variables

In Java its possible to store thread specific variables. The class ThreadLocal provides this functionality. This class is internally implemented with a map. The keys for this map are generated by an AtomicInteger starting on 0.

...