File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
spring-messaging/src/main/java/org/springframework/messaging/tcp/reactor Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 3131import reactor .core .publisher .MonoProcessor ;
3232import reactor .core .scheduler .Scheduler ;
3333import reactor .core .scheduler .Schedulers ;
34- import reactor .ipc .netty .ChannelFutureMono ;
34+ import reactor .ipc .netty .FutureMono ;
3535import reactor .ipc .netty .NettyContext ;
3636import reactor .ipc .netty .NettyInbound ;
3737import reactor .ipc .netty .NettyOutbound ;
@@ -164,7 +164,7 @@ public ListenableFuture<Void> shutdown() {
164164
165165 this .stopping = true ;
166166
167- Mono <Void > completion = ChannelFutureMono .from (this .group .close ())
167+ Mono <Void > completion = FutureMono .from (this .group .close ())
168168 .doAfterTerminate ((x , e ) -> this .scheduler .shutdown ());
169169
170170 return new MonoToListenableFutureAdapter <>(completion );
You can’t perform that action at this time.
0 commit comments