/*
* Copyright (c) 2004 Rhombus Technologies, Inc.
* All rights reserved.
*/
package com.ubermq.kernel;
import java.net.*;
/**
* A connection info extension that allows a caller to obtain a <code>Socket</code>.
*/
public interface SocketConnectionInfo
extends IConnectionInfo
{
/**
* Returns the socket resource that this connection represents.
*/
public Socket getSocket();
}
|