Package org.apache.activemq.thread
Interface TaskRunner
-
- All Known Implementing Classes:
DeterministicTaskRunner
public interface TaskRunner
Allows you to request a thread execute the associated Task.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
shutdown()
void
shutdown(long timeout)
void
wakeup()
-
-
-
Method Detail
-
wakeup
void wakeup() throws InterruptedException
- Throws:
InterruptedException
-
shutdown
void shutdown() throws InterruptedException
- Throws:
InterruptedException
-
shutdown
void shutdown(long timeout) throws InterruptedException
- Throws:
InterruptedException
-
-