diff options
Diffstat (limited to 'java/src/IceInternal/ThreadPoolCurrent.java')
-rw-r--r-- | java/src/IceInternal/ThreadPoolCurrent.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/java/src/IceInternal/ThreadPoolCurrent.java b/java/src/IceInternal/ThreadPoolCurrent.java index e278fcb917b..7b81127016c 100644 --- a/java/src/IceInternal/ThreadPoolCurrent.java +++ b/java/src/IceInternal/ThreadPoolCurrent.java @@ -31,6 +31,12 @@ public final class ThreadPoolCurrent _threadPool.ioCompleted(this); } + public void + dispatchFromThisThread(DispatchWorkItem workItem) + { + _threadPool.dispatchFromThisThread(workItem); + } + final ThreadPool _threadPool; final ThreadPool.EventHandlerThread _thread; EventHandler _handler; |