WhiteBoard Using RMI
WSU CEG 7370 WhiteBoard Using Java RMI
WbServer.java
Go to the documentation of this file.
1 // file: WbServer.java
2 
3 package WhiteBoard;
4 
5 import java.util.*;
6 
7 public interface WbServer extends java.rmi.Remote {
8  void addClient(WbClient wc, String brnm) throws java.rmi.RemoteException;
9  void delClient(WbClient wc, String brnm) throws java.rmi.RemoteException;
10  void addLine(LineCoords ln, String brnm) throws java.rmi.RemoteException;
11  void sendAllLines(WbClient wc, String brnm) throws java.rmi.RemoteException;
12 }
13 
14 // -eof-
void delClient(WbClient wc, String brnm)
void addLine(LineCoords ln, String brnm)
void addClient(WbClient wc, String brnm)
void sendAllLines(WbClient wc, String brnm)
Copyright © 2014 www.wright.edu/~pmateti;   thanks to doxygen