SubjectRunnable.run

{@link ThreadState#bind Bind}s the Subject thread state, executes the target {@code Runnable} and then guarantees the previous thread state's {@link ThreadState#restore restoration}: <pre> try { threadState.{@link ThreadState#bind bind()}; {@link #doRun doRun}(targetRunnable); } finally { threadState.{@link ThreadState#restore restore()} } </pre>

class SubjectRunnable
void
run
()

Meta