ByteReader.java 397 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.internal.io;

import java.io.IOException;

public interface ByteReader {
    public static final int EOF = -1;

    public int read(long var1) throws IOException;

    public int read(long var1, byte[] var3, int var4, int var5) throws IOException;

    public long length() throws IOException;

    public void close() throws IOException;
}