mirror of
https://gitlab.com/biskuteri-cafe/JKomasto2.git
synced 2024-11-20 05:24:50 +01:00
18 lines
240 B
Java
18 lines
240 B
Java
|
|
import cafe.biskuteri.hinoki.Tree;
|
|
import java.io.IOException;
|
|
|
|
interface
|
|
RequestListener {
|
|
|
|
void
|
|
connectionFailed(IOException eIo);
|
|
|
|
void
|
|
requestFailed(int httpCode, Tree<String> json);
|
|
|
|
void
|
|
requestSucceeded(Tree<String> json);
|
|
|
|
}
|