Komplettes G-Earth Paket inkl. JRE, Extensions und Tools. Extensions: - G-BuildTools, G-Click Ultimate, G-Loader, G-Manipulate - G-Presets, G-Translator, G-Trigger, G-itemViewer - Market Utils, Packet Info Explorer, Plants - RandomRoomVisitor, RoomLogger, Sanbovir Photo Inspector - SpyFriends, WallAligner, XabboScripter, xabbo
26 lines
445 B
Java
26 lines
445 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package okio;
|
|
|
|
import java.io.Closeable;
|
|
import java.io.Flushable;
|
|
import java.io.IOException;
|
|
import okio.Buffer;
|
|
import okio.Timeout;
|
|
|
|
public interface Sink
|
|
extends Closeable,
|
|
Flushable {
|
|
public void write(Buffer var1, long var2) throws IOException;
|
|
|
|
@Override
|
|
public void flush() throws IOException;
|
|
|
|
public Timeout timeout();
|
|
|
|
@Override
|
|
public void close() throws IOException;
|
|
}
|
|
|