Package ua.vydai.chat.server.model.interfaces

Examples of ua.vydai.chat.server.model.interfaces.Closeable


    synchronized public Set<ClientObject> getClients() {
        return userList.keySet();
    }
   
    synchronized public void clear() {
        Closeable chat;
        for (ClientObject userObj : getClients()) {
            chat = getChatBy(userObj);
            if (chat != null) { // if previously wasn't closed from client side, for example
                chat.close();
            }
        }
        userList.clear();
    }
View Full Code Here

TOP

Related Classes of ua.vydai.chat.server.model.interfaces.Closeable

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.