All Downloads are FREE. Search and download functionalities are using the official Maven repository.

reactor.bus.publisher.BusPublisher Maven / Gradle / Ivy

/*
 * Copyright (c) 2011-2014 Pivotal Software, Inc.
 *
 *  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.bus.publisher;

import org.reactivestreams.Publisher;
import org.reactivestreams.Subscriber;
import org.reactivestreams.Subscription;
import reactor.bus.Bus;
import reactor.bus.EventBus;
import reactor.bus.registry.Registration;
import reactor.bus.selector.Selector;
import reactor.core.Dispatcher;
import reactor.core.dispatch.SynchronousDispatcher;
import reactor.core.reactivestreams.SerializedSubscriber;
import reactor.fn.Consumer;

import javax.annotation.Nonnull;

/**
 * Emit signals whenever an Event arrives from the {@link reactor.bus.selector.Selector} topic from the {@link
 * reactor.bus.Bus}.
 * This stream will never emit a {@link org.reactivestreams.Subscriber#onComplete()}.
 * 

* Create such stream with the provided factory, E.g.: *

 * {@code
 * Streams.create(eventBus.on($("topic"))).consume(System.out::println)
 * }
 * 
* * @author Stephane Maldini */ public final class BusPublisher implements Publisher { private final Selector selector; private final Bus observable; private final boolean ordering; public BusPublisher(final @Nonnull Bus observable, final @Nonnull Selector selector) { this.selector = selector; this.observable = observable; Dispatcher dispatcher = EventBus.class.isAssignableFrom(observable.getClass()) ? ((EventBus)observable).getDispatcher() : SynchronousDispatcher.INSTANCE; this.ordering = dispatcher.supportsOrdering(); } @Override public void subscribe(Subscriber s) { final Subscriber subscriber; if(!ordering) { subscriber = SerializedSubscriber.create(s); }else{ subscriber = s; } subscriber.onSubscribe(new Subscription() { final Registration> registration = observable.on(selector, new Consumer() { @Override public void accept(T event) { subscriber.onNext(event); } }); @Override public void request(long n) { //IGNORE } @Override public void cancel() { registration.cancel(); } }); } @Override public String toString() { return "BusPublisher{" + "selector=" + selector + ", bus=" + observable + '}'; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy