Polishing

This commit is contained in:
Juergen Hoeller
2019-03-07 17:55:32 +01:00
parent 458f75f489
commit 18ce8564e2
19 changed files with 126 additions and 110 deletions

View File

@@ -42,6 +42,7 @@ import org.springframework.util.Assert;
* @author Rossen Stoyanchev
* @author Stephane Maldini
* @since 5.0
* @param <T> the type of element signaled
*/
public class ChannelSendOperator<T> extends Mono<Void> implements Scannable {
@@ -77,7 +78,7 @@ public class ChannelSendOperator<T> extends Mono<Void> implements Scannable {
private enum State {
/** No emissions from the upstream source yet */
/** No emissions from the upstream source yet. */
NEW,
/**
@@ -337,6 +338,7 @@ public class ChannelSendOperator<T> extends Mono<Void> implements Scannable {
private final WriteBarrier writeBarrier;
@Nullable
private Subscription subscription;