In the JVMTI it is possible to launch an agent thread for executing code concurrently: RunAgentThread
The documentation recommends this, for instance for communication purposes. Currently my JVMTI agent uses the thread handling of boost. Is there any difference and should I switch to RunAgentThread or am I doing fine with the boost thread? I cannot find any hints in the JVMTI.
I mean beside a Java.lang.Thread is used for this thread - I don't see any advantages in this.