summaryrefslogtreecommitdiff
path: root/java/src/IceInternal/SocketOperation.java
blob: aa3317ec6bfb00574347b4b007ce53a4271555b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// **********************************************************************
//
// Copyright (c) 2003-2010 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;
}