blob: f9889df74f8183937ffefde67ad24af4605ac645 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// **********************************************************************
//
// Copyright (c) 2003-2014 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;
public interface Transceiver
{
java.nio.channels.SelectableChannel fd();
int initialize(Buffer readBuffer, Buffer writeBuffer, Ice.Holder<Boolean> moreData);
int closing(boolean initiator, Ice.LocalException ex);
void close();
EndpointI bind();
int write(Buffer buf);
int read(Buffer buf, Ice.Holder<Boolean> moreData);
String protocol();
@Override
String toString();
String toDetailedString();
Ice.ConnectionInfo getInfo();
void checkSendSize(Buffer buf, int messageSizeMax);
}
|