Executes in the current thread. Calls Runnables directly so it is possible for the
stack to overflow. To avoid overflow the trampoline
can be used instead.
Blocking should be strictly avoided as it could hog the current thread.
Also, since we're running on a single thread, blocking code risks deadlock.
Executes in the current thread. Calls Runnables directly so it is possible for the stack to overflow. To avoid overflow the
trampoline
can be used instead.Blocking should be strictly avoided as it could hog the current thread. Also, since we're running on a single thread, blocking code risks deadlock.
(Since version 2.3.0) Use trampoline instead