| Interface and Description |
|---|
| io.rsocket.resume.ResumeStrategy
as of 1.0 RC7 in favor of using
Resume.retry(Retry) via
RSocketConnector or RSocketServer. |
| Class and Description |
|---|
| io.rsocket.frame.ErrorType
please use constants in
ErrorFrameFlyweight. |
| io.rsocket.resume.ExponentialBackoffResumeStrategy
as of 1.0 RC7 in favor of passing
Retry.backoff(long, Duration) to Resume.retry(Retry). |
| io.rsocket.resume.PeriodicResumeStrategy
as of 1.0 RC7 in favor of passing
Retry.fixedDelay(long, Duration) to Resume.retry(Retry). |
| io.rsocket.RSocketFactory
please use
RSocketConnector and RSocketServer. |
| io.rsocket.internal.SwitchTransformFlux
in favour of
Flux.switchOnFirst(BiFunction) |
| Exceptions and Description |
|---|
| io.rsocket.exceptions.RSocketException
please use
RSocketErrorException instead |
| Method and Description |
|---|
| io.rsocket.RSocketFactory.ClientRSocketFactory.addClientPlugin(RSocketInterceptor) |
| io.rsocket.RSocketFactory.ServerRSocketFactory.addClientPlugin(RSocketInterceptor) |
| io.rsocket.RSocketFactory.ClientRSocketFactory.addServerPlugin(RSocketInterceptor) |
| io.rsocket.RSocketFactory.ServerRSocketFactory.addServerPlugin(RSocketInterceptor) |
| io.rsocket.RSocketFactory.ClientRSocketFactory.byteBufAllocator(ByteBufAllocator)
this method is deprecated and deliberately has no effect anymore. Right now, in
order configure the custom
ByteBufAllocator it is recommended to use the
following setup for Reactor Netty based transport: 1. For Client:
2. For server:
Or in case of local transport, to use corresponding factory method LocalClientTransport.creat(String, ByteBufAllocator) |
| io.rsocket.RSocketFactory.ServerRSocketFactory.byteBufAllocator(ByteBufAllocator)
this method is deprecated and deliberately has no effect anymore. Right now, in
order configure the custom
ByteBufAllocator it is recommended to use the
following setup for Reactor Netty based transport: 1. For Client:
2. For server:
Or in case of local transport, to use corresponding factory method LocalClientTransport.creat(String, ByteBufAllocator) |
| io.rsocket.ConnectionSetupPayload.create(ByteBuf)
as of 1.0 RC7. Please, use
DefaultConnectionSetupPayload constructor. |
| io.rsocket.core.RSocketServer.errorConsumer(Consumer<Throwable>)
this is deprecated with no replacement and will be removed after
RSocketFactory is removed. |
| io.rsocket.core.RSocketConnector.errorConsumer(Consumer<Throwable>)
this is deprecated with no replacement and will be removed after
RSocketFactory is removed. |
| io.rsocket.RSocketFactory.ClientRSocketFactory.errorConsumer(Consumer<Throwable>)
this is deprecated with no replacement.
|
| io.rsocket.RSocketFactory.ServerRSocketFactory.errorConsumer(Consumer<Throwable>)
this is deprecated with no replacement.
|
| io.rsocket.RSocketFactory.ClientRSocketFactory.keepAlive() |
| io.rsocket.RSocketFactory.ClientRSocketFactory.singleSubscriberRequester()
without a replacement and no longer used.
|
| io.rsocket.RSocketFactory.ServerRSocketFactory.singleSubscriberRequester()
without a replacement and no longer used.
|
| Constructor and Description |
|---|
| io.rsocket.exceptions.SetupException(String) |
| io.rsocket.exceptions.SetupException(String, Throwable) |