/** * Copyright 2013 Netflix, 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 rx.operators; import rx.Notification; import rx.Observable; import rx.Observer; import rx.Subscription; import rx.util.functions.Func1; /** * Dematerializes the explicit notification values of an observable sequence as implicit notifications. * See http://msdn.microsoft.com/en-us/library/hh229047(v=vs.103).aspx for the Microsoft Rx equivalent. */ public final class OperationDematerialize { /** * Dematerializes the explicit notification values of an observable sequence as implicit notifications. * * @param sequence * An observable sequence containing explicit notification values which have to be turned into implicit notifications. * @return An observable sequence exhibiting the behavior corresponding to the source sequence's notification values. * @see http://msdn.microsoft.com/en-us/library/hh229047(v=vs.103).aspx */ public static Func1, Subscription> dematerialize(final Observable> sequence) { return new DematerializeObservable<>(sequence); } private static class DematerializeObservable implements Func1, Subscription> { private final Observable> sequence; public DematerializeObservable(Observable> sequence) { this.sequence = sequence; } @Override public Subscription call(final Observer observer) { return sequence.subscribe(new Observer>() { @Override public void onCompleted() { } @Override public void onError(Exception e) { } @Override public void onNext(Notification value) { switch (value.getKind()) { case OnNext: observer.onNext(value.getValue()); break; case OnError: observer.onError(value.getException()); break; case OnCompleted: observer.onCompleted(); break; } } }); } } }