mirror of
https://gitlab.com/biskuteri-cafe/JKomasto2.git
synced 2024-11-20 05:24:50 +01:00
511ca1aeef
Added testing implementation of updater.
32 lines
433 B
Java
32 lines
433 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);
|
|
|
|
}
|
|
|
|
interface
|
|
ServerSideEventsListener {
|
|
|
|
void
|
|
connectionFailed(IOException eIo);
|
|
|
|
void
|
|
requestFailed(int httpCode, Tree<String> json);
|
|
|
|
void
|
|
lineReceived(String line);
|
|
|
|
}
|