Source of QuotePushServer.java


  1: 
  2: public interface QuotePushServer extends java.rmi.Remote {
  3:   StockQuote[] getQuote() throws java.rmi.RemoteException;
  4:   void watch(QuoteClient client, String[] list) throws java.rmi.RemoteException;
  5: }