Package gnu.inet.nntp

Examples of gnu.inet.nntp.NNTPConnection.quit()


    public void disconnect() throws IOException {
        Iterator it = usedConnections.iterator();
        while(it.hasNext()) {
            NNTPConnection con = (NNTPConnection) it.next();
            //TODO disconnect connection
            con.quit();
            availableConnections.push(con);
        }
        fireDisconnected();
    }
   
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.