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

reactor.rx.action.Signal Maven / Gradle / Ivy

The newest version!
/*
 * 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.rx.action;

import org.reactivestreams.Subscriber;
import org.reactivestreams.Subscription;
import reactor.fn.Consumer;
import reactor.fn.Supplier;

import java.io.Serializable;

/**
 * A domain representation of a Reactive {@link reactor.rx.Stream} signal.
 * There are 4 differents signals and their possible sequence is defined as such:
 * onError | (onSubscribe onNext* (onError | onComplete)?)
 *
 * @author Stephane Maldini
 * @since 2.0
 */
public final class Signal implements Supplier, Consumer>, Serializable {

	public enum Type {
		/**
		 * Only happens once, a subscribe signal is the handshake between a new subscriber and a producer.
		 * 

* see {@link reactor.rx.Stream#subscribe(org.reactivestreams.Subscriber)} */ SUBSCRIBE, /** * Can happen N times where N is a possibly unbounded number. The signal will trigger core logic on all * {@link reactor.rx.action.Action} attached to a {@link reactor.rx.Stream}. *

* see {@link reactor.rx.action.Action#onNext(Object)} */ NEXT, /** * Only happens once, a complete signal is used to confirm the successful end of the data sequence flowing in a * {@link reactor.rx.Stream}. The signal releases batching operations such as {@link reactor.rx.Stream#buffer()}, * {@link reactor.rx.Stream#window()} or {@link reactor.rx.Stream#reduce(reactor.fn.Function)} *

* see {@link reactor.rx.action.Action#onComplete()} */ COMPLETE, /** * Only happens once, a complete signal is used to confirm the error end of the data sequence flowing in a * {@link reactor.rx.Stream}. However, the signal can be recovered using various operations such as {@link reactor * .rx.Stream#recover * (Class)} or {@link reactor.rx.Stream#retry()} *

* see {@link reactor.rx.action.Action#onError(Throwable cause)} */ ERROR } private static final Signal ON_COMPLETE = new Signal<>(Type.COMPLETE, null, null, null); private final Type type; private final Throwable throwable; private final T value; private transient final Subscription subscription; /** * Creates and returns a {@code Signal} of variety {@code Type.NEXT}, and assigns it a value. * * @param t the item to assign to the signal as its value * @return an {@code OnNext} variety of {@code Signal} */ public static Signal next(T t) { return new Signal(Type.NEXT, t, null, null); } /** * Creates and returns a {@code Signal} of variety {@code Type.ERROR}, and assigns it an exception. * * @param e the exception to assign to the signal * @return an {@code OnError} variety of {@code Signal} */ public static Signal error(Throwable e) { return new Signal(Type.ERROR, null, e, null); } /** * Creates and returns a {@code Signal} of variety {@code Type.COMPLETE}. * * @return an {@code OnCompleted} variety of {@code Signal} */ @SuppressWarnings("unchecked") public static Signal complete() { return (Signal) ON_COMPLETE; } /** * Creates and returns a {@code Signal} of variety {@code Type.COMPLETE}. * * @param subscription the subscription * @return an {@code OnCompleted} variety of {@code Signal} */ @SuppressWarnings("unchecked") public static Signal subscribe(Subscription subscription) { return new Signal(Type.SUBSCRIBE, null, null, subscription); } private Signal(Type type, T value, Throwable e, Subscription subscription) { this.value = value; this.subscription = subscription; this.throwable = e; this.type = type; } /** * Read the exception associated with this (onError) signal. * * @return the Throwable associated with this (onError) signal */ public Throwable getThrowable() { return throwable; } /** * Read the subscription associated with this (onSubscribe) signal. * * @return the Subscription associated with this (onSubscribe) signal */ public Subscription getSubscription() { return subscription; } /** * Retrieves the item associated with this (onNext) signal. * * @return the item associated with this (onNext) signal */ public T get() { return value; } /** * Has this signal an item associated with it ? * * @return a boolean indicating whether or not this signal has an item associated with it */ public boolean hasValue() { return isOnNext() && value != null; // isn't "null" a valid item? } /** * Read whether this signal is on error and carries the cause. * * @return a boolean indicating whether this signal has an error */ public boolean hasError() { return isOnError() && throwable != null; } /** * Read the type of this signal: {@code Subscribe}, {@code Next}, {@code Error}, or {@code Complete} * * @return the type of the signal */ public Type getType() { return type; } /** * Indicates whether this signal represents an {@code onError} event. * * @return a boolean indicating whether this signal represents an {@code onError} event */ public boolean isOnError() { return getType() == Type.ERROR; } /** * Indicates whether this signal represents an {@code onComplete} event. * * @return a boolean indicating whether this signal represents an {@code onSubscribe} event */ public boolean isOnComplete() { return getType() == Type.COMPLETE; } /** * Indicates whether this signal represents an {@code onSubscribe} event. * * @return a boolean indicating whether this signal represents an {@code onSubscribe} event */ public boolean isOnSubscribe() { return getType() == Type.SUBSCRIBE; } /** * Indicates whether this signal represents an {@code onNext} event. * * @return a boolean indicating whether this signal represents an {@code onNext} event */ public boolean isOnNext() { return getType() == Type.NEXT; } @Override public void accept(Subscriber observer) { if (isOnNext()) { observer.onNext(get()); } else if (isOnComplete()) { observer.onComplete(); } else if (isOnError()) { observer.onError(getThrowable()); } else if (isOnSubscribe()) { observer.onSubscribe(subscription); } } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; Signal signal = (Signal) o; if (type != signal.type) return false; if (isOnComplete()) return true; if (isOnSubscribe() && subscription != null ? !subscription.equals(signal.subscription) : signal.subscription != null) return false; if (isOnError() && throwable != null ? !throwable.equals(signal.throwable) : signal.throwable != null) return false; return (isOnNext() && value != null ? !value.equals(signal.value) : signal.value != null); } @Override public int hashCode() { int result = type != null ? type.hashCode() : 0; if (isOnError()) result = 31 * result + (throwable != null ? throwable.hashCode() : 0); if (isOnNext()) result = 31 * result + (value != null ? value.hashCode() : 0); if (isOnComplete()) result = 31 * result + (subscription != null ? subscription.hashCode() : 0); return result; } @Override public String toString() { return "Signal{" + "type=" + type + (isOnError() ? ", throwable=" + throwable : (isOnNext() ? ", value=" + value : (isOnSubscribe() ? ", subscription=" + subscription : ""))) + '}'; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy