EDU.oswego.cs.dl.util.concurrent.misc
class: ForcedStartThreadedExecutor [javadoc |
source]
java.lang.Object
EDU.oswego.cs.dl.util.concurrent.ThreadFactoryUser
EDU.oswego.cs.dl.util.concurrent.ThreadedExecutor
EDU.oswego.cs.dl.util.concurrent.misc.ForcedStartThreadedExecutor
All Implemented Interfaces:
Executor
Method from EDU.oswego.cs.dl.util.concurrent.misc.ForcedStartThreadedExecutor Summary: |
---|
execute |
Methods from EDU.oswego.cs.dl.util.concurrent.ThreadedExecutor: |
---|
execute |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from EDU.oswego.cs.dl.util.concurrent.misc.ForcedStartThreadedExecutor Detail: |
public void execute(Runnable command) throws InterruptedException {
ForcedStartRunnable wrapped = new ForcedStartRunnable(command);
super.execute(wrapped);
wrapped.started().acquire();
}
|