First page Back Continue Last page Graphics
InBuffer
Class InBuffer
{
// create a buffer that we supply at most
// maxrecors from a file starting at the nth
// record
public Buffer(String file, int blocksize,
int startingblock, int maxblocks);
// retrieve a new block
private underflow();
// return the next record
public SomeClass read();
}