view src/goodjava/rpc/FixedLengthInputStream.java @ 1490:9a2a2181a58f

FixedLengthInputStream
author Franklin Schmidt <fschmidt@gmail.com>
date Sat, 02 May 2020 20:42:28 -0600
parents 27efb1fcbcb5
children 491b355acef7
line wrap: on
line source

package goodjava.rpc;

import java.io.InputStream;
import java.io.FilterInputStream;
import java.io.IOException;
import java.io.EOFException;


final class FixedLengthInputStream extends goodjava.io.FixedLengthInputStream {

	public FixedLengthInputStream(InputStream in,long len) {
		super(in,len);
	}

    public void close() throws IOException {
        while( left > 0 ) {
			if( skip(left) == 0 )
				throw new EOFException();
		}
    }

}