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

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

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

import java.util.ArrayList;

import org.jboss.remoting.samples.chat.exceptions.NameInUseException;
import org.jboss.remoting.samples.chat.server.ChatServer;

// ****************************************************************
public interface RemoteStrategy
{
  ArrayList list() throws org.jboss.remoting.samples.chat.exceptions.RemoteConnectionException, org.jboss.remoting.samples.chat.exceptions.ShuttingDownException;

  ChatServer createChat(String description,
                              ChatMember owner,
                              TalkFrame talkFrame,
                              org.jboss.remoting.samples.chat.utility.ReadWriteArrayList outgoingLines)
      throws NameInUseException, org.jboss.remoting.samples.chat.exceptions.RemoteConnectionException, org.jboss.remoting.samples.chat.exceptions.ShuttingDownException;

  ChatServer join(String key,
                        ChatMember newMember,
                        TalkFrame talkFrame,
                        org.jboss.remoting.samples.chat.utility.ReadWriteArrayList outgoingLines)
      throws NameInUseException, org.jboss.remoting.samples.chat.exceptions.RemoteConnectionException, org.jboss.remoting.samples.chat.exceptions.ShuttingDownException;

  void setShuttingDown();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy