rsocket-kotlin
RSocket Kotlin multi-platform implementation based on
kotlinx.coroutines and kotlinx-io.
RSocket is a binary application protocol providing Reactive Streams semantics for use on byte stream transports such as
TCP, WebSockets, QUIC and Aeron.
It enables the following symmetric interaction models via async message passing over a single connection:
Learn more at http://rsocket.io
Supported platforms and transports:
Local (in memory) transport is supported for all targets.
Starting from Ktor 3.1 release,
all ktor-client, ktor-server and ktor-network modules are supported for all targets.
So all Ktor related transports (TCP and WebSocket) are supported by rsocket-kotlin for all targets.
Additionally, there is experimental JVM-only support for Netty TCP and QUIC transpots.
Using in your projects
rsocket-kotlin is available on Maven Central:
repositories {
mavenCentral()
}
Ktor plugins
rsocket-kotlin provides client
and server plugins for ktor
Dependencies:
dependencies {
implementation("io.rsocket.kotlin:ktor-client-rsocket:0.20.0")
implementation("io.rsocket.kotlin:ktor-server-rsocket:0.20.0")
}
Example of client plugin usage:
Example of server plugin usage:
Standalone transports
rsocket-kotlin also provides standalone transports which can be used to establish RSocket connection:
Dependencies:
dependencies {
implementation("io.rsocket.kotlin:rsocket-core:0.20.0")
implementation("io.rsocket.kotlin:rsocket-transport-ktor-tcp:0.20.0")
implementation("io.rsocket.kotlin:rsocket-transport-ktor-websocket-client:0.20.0")
implementation("io.rsocket.kotlin:rsocket-transport-ktor-websocket-server:0.20.0")
implementation("io.rsocket.kotlin:rsocket-transport-netty-tcp:0.20.0")
}
Example of usage standalone TCP ktor client transport:
val parentContext = Job()
val target = KtorTcpClientTransport(parentContext) {
}.target("127.0.0.1", 8080)
val connector = RSocketConnector {
}
val rsocket: RSocket = connector.connect(target)
val response = rsocket.requestResponse(buildPayload { data("""{ "data": "hello world" }""") })
println(response.data.readString())
Example of usage standalone TCP ktor server transport:
val parentContext = Job()
val target = KtorTcpServerTransport(parentContext) {
}.target("127.0.0.1", 8080)
val server = RSocketServer {
}
val serverInstance = server.startServer(target) {
RSocketRequestHandler {
requestResponse { request: Payload ->
println(request..readString())
delay()
buildPayload {
()
}
}
}
}
serverInstance.coroutineContext.job.join()
More samples:
- multiplatform-chat - chat implementation with JVM/JS/Native server and JVM/JS/Native client with
shared classes and shared data serialization
using kotlinx.serialization
Reactive Streams Semantics
From RSocket protocol:
Reactive Streams semantics are used for flow control of Streams, Subscriptions, and Channels.
This is a credit-based model where the Requester grants the Responder credit for the number of PAYLOADs it can send.
It is sometimes referred to as "request-n" or "request(n)".
kotlinx.coroutines doesn't truly support request(n) semantic,
but it has flexible CoroutineContext which can be used to achieve something similar.
rsocket-kotlin contains RequestStrategy coroutine context element, which defines,
strategy for sending of requestNframes.
Example:
val client: RSocket = TODO()
val stream: Flow<Payload> = client.requestStream(Payload("data"))
stream.flowOn(PrefetchStrategy(requestSize = 10, requestOn = 5)).collect { payload: Payload ->
println(payload..readString())
}
Bugs and Feedback
For bugs, questions and discussions please use the Github Issues.
LICENSE
Copyright 2015-2024 the original author or authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.