blob: 36379959bfb96b739c42c908046abb704b82f623 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// **********************************************************************
//
// Copyright (c) 2002
// Mutable Realms, Inc.
// Huntsville, AL, USA
//
// All Rights Reserved
//
// **********************************************************************
package IceInternal;
public interface EndpointFactory
{
short type();
String protocol();
Endpoint create(String str);
Endpoint read(BasicStream s);
void destroy();
}
|