Package eu.olol.jrc.util

Examples of eu.olol.jrc.util.Message


    }

    @Override
    public void update(Observable o, Object arg) {
        if (arg instanceof Message) {
            Message p = (Message) arg;

            // Send the post to the users in the channel
            for (Integer peerId : channels.get(p.getChannel()).getUsers()) {
                peers.get(peerId).send(p);
            }
        } else if (arg instanceof Control) {
            handleControl((ClientHandler) o, (Control) arg);
        }
View Full Code Here

TOP

Related Classes of eu.olol.jrc.util.Message

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.