Skip to content

Commit e458862

Browse files
committed
Reflect recent Reactor changes
1 parent e0de775 commit e458862

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spring-web/src/main/java/org/springframework/http/server/reactive/ChannelSendOperator.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
import org.reactivestreams.Publisher;
2222
import org.reactivestreams.Subscriber;
2323
import org.reactivestreams.Subscription;
24+
import reactor.core.CoreSubscriber;
2425
import reactor.core.Scannable;
2526
import reactor.core.publisher.Flux;
2627
import reactor.core.publisher.Mono;
2728
import reactor.core.publisher.Operators;
28-
import reactor.util.context.Context;
2929

3030
import org.springframework.lang.Nullable;
3131
import org.springframework.util.Assert;
@@ -69,8 +69,8 @@ public Object scanUnsafe(Attr key) {
6969
}
7070

7171
@Override
72-
public void subscribe(Subscriber<? super Void> s, Context ctx) {
73-
this.source.subscribe(new WriteWithBarrier(s), ctx);
72+
public void subscribe(CoreSubscriber<? super Void> actual) {
73+
this.source.subscribe(new WriteWithBarrier(actual));
7474
}
7575

7676

0 commit comments

Comments
 (0)