Class ReactorNettyTcpConnection<P>
java.lang.Object
org.springframework.messaging.tcp.reactor.ReactorNettyTcpConnection<P>
- Type Parameters:
- P- the type of payload for outbound messages
- All Implemented Interfaces:
- Closeable, AutoCloseable, TcpConnection<P>
Reactor Netty based implementation of 
TcpConnection.- Since:
- 5.0
- Author:
- Rossen Stoyanchev
- 
Constructor SummaryConstructorsConstructorDescriptionReactorNettyTcpConnection(reactor.netty.NettyInbound inbound, reactor.netty.NettyOutbound outbound, ReactorNettyCodec<P> codec, reactor.core.publisher.Sinks.Empty<Void> completionSink) 
- 
Method SummaryModifier and TypeMethodDescriptionvoidclose()Close the connection.voidonReadInactivity(Runnable runnable, long inactivityDuration) Register a task to invoke after a period of read inactivity.voidonWriteInactivity(Runnable runnable, long inactivityDuration) Register a task to invoke after a period of write inactivity.Send the given message.toString()
- 
Constructor Details- 
ReactorNettyTcpConnectionpublic ReactorNettyTcpConnection(reactor.netty.NettyInbound inbound, reactor.netty.NettyOutbound outbound, ReactorNettyCodec<P> codec, reactor.core.publisher.Sinks.Empty<Void> completionSink) 
 
- 
- 
Method Details- 
sendAsyncDescription copied from interface:TcpConnectionSend the given message.- Specified by:
- sendAsyncin interface- TcpConnection<P>
- Parameters:
- message- the message
- Returns:
- a CompletableFuture that can be used to determine when and if the message was successfully sent
 
- 
onReadInactivityDescription copied from interface:TcpConnectionRegister a task to invoke after a period of read inactivity.- Specified by:
- onReadInactivityin interface- TcpConnection<P>
- Parameters:
- runnable- the task to invoke
- inactivityDuration- the amount of inactive time in milliseconds
 
- 
onWriteInactivityDescription copied from interface:TcpConnectionRegister a task to invoke after a period of write inactivity.- Specified by:
- onWriteInactivityin interface- TcpConnection<P>
- Parameters:
- runnable- the task to invoke
- inactivityDuration- the amount of inactive time in milliseconds
 
- 
closepublic void close()Description copied from interface:TcpConnectionClose the connection.- Specified by:
- closein interface- AutoCloseable
- Specified by:
- closein interface- Closeable
- Specified by:
- closein interface- TcpConnection<P>
 
- 
toString
 
-