view src/goodjava/rpc/FixedLengthInputStream.java @ 2161:eb5bdf29a664 nginx_sites_addon tip

mkdir nginx_sites in update2.sh
author Violet7
date Wed, 28 Jan 2026 17:46:37 -0800
parents 491b355acef7
children
line wrap: on
line source

package goodjava.rpc;

import java.io.InputStream;
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();
		}
    }

}