Package org.quna.rsc.data

Examples of org.quna.rsc.data.User


        Message welcome = new Message (welcomeMsg, Date.from (Instant.now ()),
            "root", MessageType.INFO);
       
        rw.write (channel, StringByteBufferConverter.ByteBufferFromString (welcome.toString ()));
        channel.register (selector, SelectionKey.OP_READ);
        userList.add (new User (channel, false));
    }   
View Full Code Here


    }
   
    public void ban (SocketChannel channel) throws IOException {
        channel.close ();
        list.add (channel.getRemoteAddress ().toString ());
        userList.remove (new User(channel, false));
    }
View Full Code Here

TOP

Related Classes of org.quna.rsc.data.User

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.