FileDocCategorySizeDatePackage
AccountIterator.javaAPI DocExample271Thu Nov 08 00:23:28 GMT 2001com.ora.rmibook.chapter21.bank

AccountIterator.java

package com.ora.rmibook.chapter21.bank;


import java.rmi.*;


public interface AccountIterator extends Remote {
    public int getNumberOfRemainingAccounts() throws RemoteException;
    public AccountList getNext(int numberToFetch) throws RemoteException;
}