d.java 源代码


package s3;

import java.io.IOException;
import java.nio.channels.WritableByteChannel;

public interface d extends r, WritableByteChannel {
    c buffer();

    d emitCompleteSegments() throws IOException;

    @Override
    void flush() throws IOException;

    d write(byte[] bArr) throws IOException;

    d write(byte[] bArr, int i6, int i7) throws IOException;

    d writeByte(int i6) throws IOException;

    d writeDecimalLong(long j6) throws IOException;

    d writeHexadecimalUnsignedLong(long j6) throws IOException;

    d writeInt(int i6) throws IOException;

    d writeShort(int i6) throws IOException;

    d writeUtf8(String str) throws IOException;
}