moko-socket-io
0.6.0indexedFacilitates real-time, event-based communication through Socket.IO for mobile platforms, supporting various socket events and offering seamless integration with common code.
Facilitates real-time, event-based communication through Socket.IO for mobile platforms, supporting various socket events and offering seamless integration with common code.
Surfaced from shared tags and platforms — no rankings paid for.
This is a Kotlin MultiPlatform library that provides real-time, event-based communication for iOS and Android.
allprojects {
repositories {
mavenCentral()
}
}
dependencies {
commonMainApi("dev.icerock.moko:socket-io:0.6.0")
}
project build.gradle
plugins {
kotlin("native.cocoapods")
}
...
kotlin {
cocoapods {
...
// 11.0 minimal supported
ios.deploymentTarget = "11.0"
// add native dependency
pod(name = "mokoSocketIo") {
source = git(url = "https://github.com/icerockdev/moko-socket-io.git") {
tag = "release/0.6.0"
}
}
}
}
Podfile
pod 'mokoSocketIo', :git => 'https://github.com/icerockdev/moko-socket-io.git', :tag => 'release/0.6.0'
(!) Check sample - https://github.com/Alex009/moko-socket-io-sample (integration changes)
project build.gradle
plugins {
id("dev.icerock.mobile.multiplatform.cocoapods")
}
...
cocoaPods {
podsProject = file("../ios-app/Pods/Pods.xcodeproj") // here should be path to Pods xcode project
pod("mokoSocketIo", onlyLink = true)
}
Podfile
pod 'mokoSocketIo', :git => 'https://github.com/icerockdev/moko-socket-io.git', :tag => 'release/0.6.0'
common:
Please see more examples in the sample directory.
socket-io library;All development (both new features and bug fixes) is performed in the develop branch. This way master always contains the sources of the most recently released version. Please send PRs with bug fixes to the develop branch. Documentation fixes in the markdown files are an exception to this rule. They are updated directly in master.
The develop branch is pushed to master on release.
For more details on contributing please see the contributing guide.
Copyright 2020 IceRock MAG Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance the License.
You may obtain a copy of the License at
http:
Unless applicable law agreed to writing, software
distributed under the License distributed an BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express implied.
See the License the specific language governing permissions
limitations under the License.
val socket = Socket(
endpoint = "wss://my-super-server:8080",
config = SocketOptions(
queryParams = mapOf("token" to "MySuperToken"),
transport = SocketOptions.Transport.WEBSOCKET
)
) {
on(SocketEvent.Connect) {
println("connect")
}
on(SocketEvent.Connecting) {
println("connecting")
}
on(SocketEvent.Disconnect) {
println("disconnect")
}
on(SocketEvent.Error) {
println("error $it")
}
on(SocketEvent.Reconnect) {
println("reconnect")
}
on(SocketEvent.ReconnectAttempt) {
println("reconnect attempt $it")
}
on(SocketEvent.Ping) {
println("ping")
}
on(SocketEvent.Pong) {
println("pong")
}
on("employee.connected") { data ->
val serializer = DeliveryCar.serializer()
val json = JSON.nonstrict
val deliveryCar: DeliveryCar = json.parse(serializer, data)
//...
}
}