summaryrefslogtreecommitdiff
path: root/java/src/IceInternal/SocketOperation.java
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2009-08-21 15:55:01 +0200
committerBenoit Foucher <benoit@zeroc.com>2009-08-21 15:55:01 +0200
commitb9f2fa14fb3f222a6ec5e0a93bf25fe5ad12b56a (patch)
tree183215e2dbeadfbc871b800ce09726e58af38b91 /java/src/IceInternal/SocketOperation.java
parentadding compression cookbook demo (diff)
downloadice-b9f2fa14fb3f222a6ec5e0a93bf25fe5ad12b56a.tar.bz2
ice-b9f2fa14fb3f222a6ec5e0a93bf25fe5ad12b56a.tar.xz
ice-b9f2fa14fb3f222a6ec5e0a93bf25fe5ad12b56a.zip
IOCP changes, bug 3501, 4200, 4156, 3101
Diffstat (limited to 'java/src/IceInternal/SocketOperation.java')
-rw-r--r--java/src/IceInternal/SocketOperation.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/java/src/IceInternal/SocketOperation.java b/java/src/IceInternal/SocketOperation.java
new file mode 100644
index 00000000000..9a2350e1033
--- /dev/null
+++ b/java/src/IceInternal/SocketOperation.java
@@ -0,0 +1,20 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+package IceInternal;
+
+import java.nio.channels.SelectionKey;
+
+public class SocketOperation
+{
+ public static final int None = 0;
+ public static final int Read = SelectionKey.OP_READ;
+ public static final int Write = SelectionKey.OP_WRITE;
+ public static final int Connect = SelectionKey.OP_CONNECT;
+}