/* * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */ package org.mule.runtime.core.processor.strategy; import static org.mule.runtime.core.internal.util.rx.Operators.requestUnbounded; import static reactor.core.publisher.Mono.just; import org.mule.runtime.core.api.Event; import org.mule.runtime.core.api.processor.Sink; import java.util.function.Consumer; import java.util.function.Function; import org.reactivestreams.Publisher; import reactor.core.publisher.Mono; /** * {@link Sink} implementation that uses a {@link Mono} for each request */ class StreamPerEventSink implements Sink { private Function<Publisher<Event>, Publisher<Event>> processor; private Consumer<Event> eventConsumer; /** * Creates a {@link StreamPerEventSink}. * * @param processor the processor to process events emitted onto stream, typically this processor will represent the flow * pipeline. * @param eventConsumer event consumer called just before {@link Event}'s emission. */ public StreamPerEventSink(Function<Publisher<Event>, Publisher<Event>> processor, Consumer<Event> eventConsumer) { this.processor = processor; this.eventConsumer = eventConsumer; } @Override public void accept(Event event) { just(event) .doOnNext(request -> eventConsumer.accept(request)) .transform(processor) .subscribe(requestUnbounded()); } }