Skip to content
Snippets Groups Projects
Select Git revision
  • 5c71fbd418fcbbb4587bdd05f6c46d42bdd8fec2
  • master default protected
  • hai
  • isaac
  • CheHao
  • Eldar
  • mpriymak
  • master-before-merging-with-hai
  • master-before-merging-with-isaac
  • rmi-working-before-merging-with-isaac
  • all-code-merged-by-hai-v1
11 results

IClientUpdate.java

Blame
  • IClientUpdate.java 461 B
    package remote;
    
    import java.io.Serializable;
    import java.rmi.Remote;
    import java.rmi.RemoteException;
    
    public interface IClientUpdate extends Remote, Serializable {
    
        enum Action {KICKOUT, ASSIGNADMIN};
        boolean updateUserList(String[] users) throws RemoteException;
        void terminateChat() throws RemoteException;
        void notifyManagerActions(String toClient, Action action) throws RemoteException;
        void setVisibility() throws RemoteException;
    
    }