Designing RMI Applications

Should We Pass Method Objects?

public interface Account extends Remote {
  public Money getBalance() throws RemoteException;
  public void postTransaction(Transaction transaction)
    throws RemoteException, TransactionException;
}

José M. Vidal .

14 of 49