Interface SinkWrapper<T>
public interface SinkWrapper<T>
Abstraction interface to bridge old
FluxSink and Sinks.Many API with a common
API.- Since:
- 4.5
- Author:
- Stefan Dragisic
-
Method Summary
-
Method Details
-
complete
void complete()Wrapper around Sink complete(). -
next
Wrapper around Sink next(Object).- Parameters:
value- to be passed to the delegate sink
-
error
Wrapper around Sink error(Throwable).- Parameters:
t- to be passed to the delegate sink
-