blob: 29285a21ff63970210c899b5623c86d20e335c88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// **********************************************************************
//
// Copyright (c) 2003-2013 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;
}
|