Last active
February 12, 2021 11:35
-
-
Save aksel/b3e986e2aa14ac78ec3fde87bd960312 to your computer and use it in GitHub Desktop.
Kotlin Socket.IO example connection function.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import io.socket.client.IO | |
import io.socket.client.Socket | |
fun connect() { | |
val socket = IO.socket("http://localhost:4000?user=aksel") | |
socket.connect() | |
.on(Socket.EVENT_CONNECT, { println("connected") }) | |
.on(Socket.EVENT_DISCONNECT, { println("disconnected") }) | |
} |
import com.github.nkzawa.socketio.client.IO
import com.github.nkzawa.socketio.client.Socket
And @aksel with Ack()
?
java code
sockets.mSocket.emit("socketID", data, new Ack() {
@Override
public void call(Object... args) {
JSONObject repues = (JSONObject) args[0];
// todo with repues
}
});
Javascript code
sockets.emit("socketID", data, repues=>{
// todo with repues
});
What if i wanna access socket in multiple kt files or activities in android?
cool, man @aksel , thanks, please to check your gradle file.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This gist is an example connect function.
It connects to a socketio server, hosted at localhost, on port 4000.
It passes a username "aksel" in the queryparams.
An equivalent Javascript socket connection would look something like this: