Skip to content

Commit

Permalink
add fuseable marker for Mono.currentContext since scalar sub
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephane Maldini committed Jul 18, 2017
1 parent 7cc4d54 commit 8e75104
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@
package reactor.core.publisher;

import reactor.core.CoreSubscriber;
import reactor.core.Fuseable;
import reactor.util.context.Context;

/**
* Materialize current {@link Context} from the subscribing flow
*/
final class MonoCurrentContext extends Mono<Context> {
final class MonoCurrentContext extends Mono<Context> implements Fuseable {

static final MonoCurrentContext INSTANCE = new MonoCurrentContext();

Expand Down

0 comments on commit 8e75104

Please sign in to comment.