forked from reactor/reactor-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix reactor#1003 Add fuseable/conditional xxxDoOnEach
- Loading branch information
1 parent
0254f45
commit 3c8008e
Showing
10 changed files
with
569 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
reactor-core/src/main/java/reactor/core/publisher/FluxDoOnEachFuseable.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* | ||
* Copyright (c) 2011-2018 Pivotal Software Inc, All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package reactor.core.publisher; | ||
|
||
import java.util.Objects; | ||
import java.util.function.Consumer; | ||
|
||
import reactor.core.CoreSubscriber; | ||
import reactor.core.Fuseable; | ||
|
||
/** | ||
* Peek into the lifecycle events and signals of a sequence, {@link Fuseable} version of | ||
* {@link FluxDoOnEach}. | ||
* | ||
* @param <T> the value type | ||
* | ||
* @see <a href="https://github.com/reactor/reactive-streams-commons">Reactive-Streams-Commons</a> | ||
*/ | ||
final class FluxDoOnEachFuseable<T> extends FluxOperator<T, T> implements Fuseable { | ||
|
||
final Consumer<? super Signal<T>> onSignal; | ||
|
||
FluxDoOnEachFuseable(Flux<? extends T> source, Consumer<? super Signal<T>> onSignal) { | ||
super(source); | ||
this.onSignal = Objects.requireNonNull(onSignal, "onSignal"); | ||
} | ||
|
||
@Override | ||
public void subscribe(CoreSubscriber<? super T> actual) { | ||
this.source.subscribe(FluxDoOnEach.createSubscriber(actual, this.onSignal, true)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
reactor-core/src/main/java/reactor/core/publisher/MonoDoOnEachFuseable.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* | ||
* Copyright (c) 2011-2018 Pivotal Software Inc, All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package reactor.core.publisher; | ||
|
||
import java.util.Objects; | ||
import java.util.function.Consumer; | ||
|
||
import reactor.core.CoreSubscriber; | ||
import reactor.core.Fuseable; | ||
|
||
/** | ||
* Peek into the lifecycle events and signals of a sequence, {@link reactor.core.Fuseable} | ||
* version of {@link MonoDoOnEach}. | ||
* | ||
* @param <T> the value type | ||
* | ||
* @see <a href="https://github.com/reactor/reactive-streams-commons">Reactive-Streams-Commons</a> | ||
*/ | ||
final class MonoDoOnEachFuseable<T> extends MonoOperator<T, T> implements Fuseable { | ||
|
||
final Consumer<? super Signal<T>> onSignal; | ||
|
||
MonoDoOnEachFuseable(Mono<? extends T> source, Consumer<? super Signal<T>> onSignal) { | ||
super(source); | ||
this.onSignal = Objects.requireNonNull(onSignal, "onSignal"); | ||
} | ||
|
||
@Override | ||
public void subscribe(CoreSubscriber<? super T> actual) { | ||
source.subscribe(FluxDoOnEach.createSubscriber(actual, onSignal, true)); | ||
} | ||
} |
Oops, something went wrong.