Package soht.server.java

Examples of soht.server.java.ConnectionInfo


     * Closes the input and output streams of the specified connection
     * and removes it from the cache.
     */
    public void removeConnection( long connectionId ) {

        ConnectionInfo info = getConnection( connectionId );

        try {
            info.getInputStream().close();
        }
        catch( Exception e ) {
            //Nothing to do here.
        }

        try {
            info.getOutputStream().close();
        }
        catch( Exception e ) {
            //Nothing to do here.
        }

View Full Code Here

TOP

Related Classes of soht.server.java.ConnectionInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.