All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.remoting.samples.chat.server.ChatServer Maven / Gradle / Ivy

There is a newer version: 5.0.29.Final
Show newest version
package org.jboss.remoting.samples.chat.server;

import org.jboss.remoting.samples.chat.client.ChatInfo;
import org.jboss.remoting.samples.chat.client.ChatMember;
import org.jboss.remoting.samples.chat.client.ChatMessage;
import org.jboss.remoting.samples.chat.exceptions.RemoteConnectionException;
import org.jboss.remoting.samples.chat.exceptions.ShuttingDownException;

public interface ChatServer
{
    void send(ChatMessage mesg) throws RemoteConnectionException, ShuttingDownException;
    ChatInfo getChatInfo() throws RemoteConnectionException, ShuttingDownException;
    java.util.ArrayList getBackChat() throws RemoteConnectionException, ShuttingDownException;
    void leave(ChatMember member) throws RemoteConnectionException, ShuttingDownException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy