diff options
author | Benoit Foucher <benoit@zeroc.com> | 2012-09-28 10:40:14 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2012-09-28 10:40:14 +0200 |
commit | 8527be5894d0e0ba90db306b8ab124c04144ab44 (patch) | |
tree | 5edbe2c2104764f9b3ba8721e573b32fe32f9baf /java/src/IceInternal/ThreadPoolCurrent.java | |
parent | minor fix to build IceGridGUI in OsX (diff) | |
download | ice-8527be5894d0e0ba90db306b8ab124c04144ab44.tar.bz2 ice-8527be5894d0e0ba90db306b8ab124c04144ab44.tar.xz ice-8527be5894d0e0ba90db306b8ab124c04144ab44.zip |
Java & C# port
Diffstat (limited to 'java/src/IceInternal/ThreadPoolCurrent.java')
-rw-r--r-- | java/src/IceInternal/ThreadPoolCurrent.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/java/src/IceInternal/ThreadPoolCurrent.java b/java/src/IceInternal/ThreadPoolCurrent.java index 02d471b4af2..93440e73e91 100644 --- a/java/src/IceInternal/ThreadPoolCurrent.java +++ b/java/src/IceInternal/ThreadPoolCurrent.java @@ -11,12 +11,13 @@ package IceInternal; public final class ThreadPoolCurrent { - ThreadPoolCurrent(Instance instance, ThreadPool threadPool) + ThreadPoolCurrent(Instance instance, ThreadPool threadPool, ThreadPool.EventHandlerThread thread) { operation = SocketOperation.None; stream = new BasicStream(instance, Protocol.currentProtocolEncoding); _threadPool = threadPool; + _thread = thread; _ioCompleted = false; _leader = false; } @@ -31,6 +32,7 @@ public final class ThreadPoolCurrent } final ThreadPool _threadPool; + final ThreadPool.EventHandlerThread _thread; EventHandler _handler; boolean _ioCompleted; boolean _leader; |