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

org.jboss.remoting.samples.chat.client.ChatReceiver Maven / Gradle / Ivy

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

import org.jboss.remoting.samples.chat.exceptions.RemoteConnectionException;

public interface ChatReceiver
{
	void setKey(Integer key) throws RemoteConnectionException;
    void send(ChatMessage mesg) throws RemoteConnectionException;
    void sendMultiple(java.util.ArrayList messages) throws RemoteConnectionException;
    void shuttingDown() throws RemoteConnectionException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy