KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > ubermq > kernel > SocketConnectionInfo


1 /*
2  * Copyright (c) 2004 Rhombus Technologies, Inc.
3  * All rights reserved.
4  */

5 package com.ubermq.kernel;
6
7 import java.net.*;
8
9 /**
10  * A connection info extension that allows a caller to obtain a <code>Socket</code>.
11  */

12 public interface SocketConnectionInfo
13     extends IConnectionInfo
14 {
15     /**
16      * Returns the socket resource that this connection represents.
17      */

18     public Socket getSocket();
19 }
20
Popular Tags