Reputation: 23626
When you do a Thread.currentThread().getId()
, is the resulting thread id scoped per process or scoped to the current Activity/Service?
Upvotes: 0
Views: 345
Reputation: 52323
It's per-process. The VM has no understanding of activities and services.
Upvotes: 1