我是 rsocket-js 的新手,并尝试使用相同的 chanel 接收消息并使用 rsocket-js(客户端)使用发射器发送消息。
socket.requestChannel(
Flowable.just({
data: data
})
).subscribe({
onComplete: () => { ... },
onError: () => {},
onNext: () => { ... },
onSubscribe: () => { ... }
})