Package irc4j.io

Examples of irc4j.io.InputThread$HandleLineThread


    public OutputThread createOutputThread() throws IOException {
        return new OutputThread(irc4J, new PrintWriter(socket.getOutputStream()));
    }

    public InputThread createInputThread() throws IOException {
        return new InputThread(irc4J, new BufferedReader(new InputStreamReader(socket.getInputStream())));
    }
View Full Code Here

TOP

Related Classes of irc4j.io.InputThread$HandleLineThread

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.