mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
17 lines
323 B
Java
Generated
17 lines
323 B
Java
Generated
// Generated automatically from okio.Sink for testing purposes
|
|
|
|
package okio;
|
|
|
|
import java.io.Closeable;
|
|
import java.io.Flushable;
|
|
import okio.Buffer;
|
|
import okio.Timeout;
|
|
|
|
public interface Sink extends Closeable, Flushable
|
|
{
|
|
Timeout timeout();
|
|
void close();
|
|
void flush();
|
|
void write(Buffer p0, long p1);
|
|
}
|