blob: b4d262eb08d92bd6b227267ba42ee2ecc21c6213 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
namespace IceInternal
{
public interface Connector
{
//
// Create a transceiver without blocking. The transceiver may not be fully connected
// until its initialize method is called.
//
Transceiver connect();
short type();
}
}
|