We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbd83b5 commit acc3552Copy full SHA for acc3552
src/com/codebutler/android_websockets/SocketIOClient.java
@@ -28,7 +28,7 @@ public static interface Handler {
28
29
public void onDisconnect(int code, String reason);
30
31
- public void onJSONMessage(JSONObject jsonMessage);
+ public void onJSON(JSONObject json);
32
33
public void onMessage(String message);
34
@@ -173,7 +173,7 @@ public void run() {
173
}
174
});
175
176
- mHandler.onJSONMessage(jsonMessage);
+ mHandler.onJSON(jsonMessage);
177
break;
178
179
case 5: {
0 commit comments