Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Comminos <andrewcomminos@gmail.com>2013-12-03 09:32:51 +0400
committerAndrew Comminos <andrewcomminos@gmail.com>2013-12-03 09:32:51 +0400
commit0e549c360c3bea4d335c97cdd10a939816e145f7 (patch)
tree5c49338e583c39d4aa4f65a12059b3f577ee7817 /src/main/aidl
parent2961a81d8fd62393924a24415a4b2a496845b1f1 (diff)
Removed database support, integrated access tokens into initial
bundle, connection tweaks.
Diffstat (limited to 'src/main/aidl')
-rw-r--r--src/main/aidl/com/morlunk/jumble/IJumbleService.aidl16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/main/aidl/com/morlunk/jumble/IJumbleService.aidl b/src/main/aidl/com/morlunk/jumble/IJumbleService.aidl
index cb39f04..5a005f6 100644
--- a/src/main/aidl/com/morlunk/jumble/IJumbleService.aidl
+++ b/src/main/aidl/com/morlunk/jumble/IJumbleService.aidl
@@ -22,9 +22,24 @@ import com.morlunk.jumble.model.Server;
import com.morlunk.jumble.IJumbleObserver;
interface IJumbleService {
+ // Network
void disconnect();
boolean isConnected();
boolean isConnecting();
+ /**
+ * Gets the TCP latency, in nanoseconds.
+ */
+ long getTCPLatency();
+ /**
+ * Gets the UDP latency, in nanoseconds.
+ */
+ long getUDPLatency();
+
+ // Server information
+ int getServerVersion();
+ String getServerRelease();
+ String getServerOSName();
+ String getServerOSVersion();
// Session and users
int getSession();
@@ -53,7 +68,6 @@ interface IJumbleService {
void joinChannel(int channel);
void createChannel(int parent, String name, String description, int position, boolean temporary);
void sendAccessTokens(in List tokens);
- List getAccessTokens();
//void setTexture(byte[] texture);
void requestBanList();
void requestUserList();