Registry / networking / rsocket-core

rsocket-core

JSON →
library1.1.5javamavenunverified

Core functionality for the RSocket library providing reactive networking protocol support.

<dependency> <groupId>io.rsocket</groupId> <artifactId>rsocket-core</artifactId> <version>1.1.5</version> </dependency>
INSTALL
IMPORT
SIG · RSOCKET-CORE
R
rsocket-core
networkingjavav1.1.5
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

RSocket
io.rsocket.RSocket

Minimal RSocket client connection example

import io.rsocket.RSocket; import io.rsocket.core.RSocketConnector; import io.rsocket.transport.netty.client.TcpClientTransport; import reactor.core.publisher.Mono; public class Quickstart { public static void main(String[] args) { Mono<RSocket> socket = RSocketConnector.create() .connect(TcpClientTransport.create("localhost", 7000)); socket.subscribe(rsocket -> System.out.println("Connected")); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
1.1.5latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
9 hits · last 30 days
node
8
OpenAI (training)
1
Resources
rsocket-core — mvn dependency:get rsocket-core · libregistry