Fix reactor-core 3.0.0.RELEASE
Fix the build to work with reactor-core-3.0.0.RELEASE
This commit is contained in:
@@ -21,7 +21,6 @@ import org.reactivestreams.Publisher;
|
||||
import org.reactivestreams.Subscriber;
|
||||
import org.reactivestreams.Subscription;
|
||||
import reactor.core.publisher.MonoSource;
|
||||
import reactor.core.publisher.OperatorAdapter;
|
||||
import reactor.core.publisher.Operators;
|
||||
|
||||
import org.springframework.util.Assert;
|
||||
@@ -54,7 +53,7 @@ public class ChannelSendOperator<T> extends MonoSource<T, Void> {
|
||||
source.subscribe(new WriteWithBarrier(s));
|
||||
}
|
||||
|
||||
private class WriteWithBarrier extends OperatorAdapter<T, Void> implements Publisher<T> {
|
||||
private class WriteWithBarrier extends Operators.SubscriberAdapter<T, Void> implements Publisher<T> {
|
||||
|
||||
/**
|
||||
* We've at at least one emission, we've called the write function, the write
|
||||
|
||||
Reference in New Issue
Block a user