- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
38 lines
776 B
Java
38 lines
776 B
Java
package okio;
|
|
|
|
import java.nio.channels.WritableByteChannel;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public interface BufferedSink extends Sink, WritableByteChannel {
|
|
Buffer buffer();
|
|
|
|
BufferedSink emit();
|
|
|
|
BufferedSink emitCompleteSegments();
|
|
|
|
@Override // okio.Sink, java.io.Flushable
|
|
void flush();
|
|
|
|
BufferedSink write(ByteString byteString);
|
|
|
|
BufferedSink write(byte[] bArr);
|
|
|
|
BufferedSink write(byte[] bArr, int i, int i2);
|
|
|
|
long writeAll(Source source);
|
|
|
|
BufferedSink writeByte(int i);
|
|
|
|
BufferedSink writeDecimalLong(long j);
|
|
|
|
BufferedSink writeHexadecimalUnsignedLong(long j);
|
|
|
|
BufferedSink writeInt(int i);
|
|
|
|
BufferedSink writeIntLe(int i);
|
|
|
|
BufferedSink writeShort(int i);
|
|
|
|
BufferedSink writeUtf8(String str);
|
|
}
|