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

rx.internal.operators.OperatorDelayWithSelector Maven / Gradle / Ivy

The newest version!
/**
 * Copyright 2014 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.internal.operators;

import rx.*;
import rx.Observable.Operator;
import rx.exceptions.Exceptions;
import rx.functions.Func1;
import rx.observers.*;
import rx.subjects.PublishSubject;

/**
 * Delay the subscription and emission of the source items by a per-item observable that fires its first element.
 *
 * @param 
 *            the item type
 * @param 
 *            the value type of the item-delaying observable
 */
public final class OperatorDelayWithSelector implements Operator {
    final Observable source;
    final Func1> itemDelay;

    public OperatorDelayWithSelector(Observable source, Func1> itemDelay) {
        this.source = source;
        this.itemDelay = itemDelay;
    }

    @Override
    public Subscriber call(final Subscriber _child) {
        final SerializedSubscriber child = new SerializedSubscriber(_child);
        final PublishSubject> delayedEmissions = PublishSubject.create();

        _child.add(Observable.merge(delayedEmissions).unsafeSubscribe(Subscribers.from(child)));

        return new Subscriber(_child) {

            @Override
            public void onCompleted() {
                delayedEmissions.onCompleted();
            }

            @Override
            public void onError(Throwable e) {
                child.onError(e);
            }

            @Override
            public void onNext(final T t) {
                try {
                    delayedEmissions.onNext(itemDelay.call(t).take(1).defaultIfEmpty(null).map(new Func1() {

                        @Override
                        public T call(V v) {
                            return t;
                        }

                    }));
                } catch (Throwable e) {
                    Exceptions.throwOrReport(e, this);
                }
            }

        };
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy