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

rx.schedulers.Schedulers Maven / Gradle / Ivy

/**
 * 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.schedulers;

import rx.Scheduler;
import rx.internal.schedulers.*;
import rx.internal.util.RxRingBuffer;
import rx.plugins.RxJavaPlugins;

import java.util.concurrent.Executor;

/**
 * Static factory methods for creating Schedulers.
 */
public final class Schedulers {

    private final Scheduler computationScheduler;
    private final Scheduler ioScheduler;
    private final Scheduler newThreadScheduler;

    private static final Schedulers INSTANCE = new Schedulers();

    private Schedulers() {
        Scheduler c = RxJavaPlugins.getInstance().getSchedulersHook().getComputationScheduler();
        if (c != null) {
            computationScheduler = c;
        } else {
            computationScheduler = new EventLoopsScheduler();
        }

        Scheduler io = RxJavaPlugins.getInstance().getSchedulersHook().getIOScheduler();
        if (io != null) {
            ioScheduler = io;
        } else {
            ioScheduler = new CachedThreadScheduler();
        }

        Scheduler nt = RxJavaPlugins.getInstance().getSchedulersHook().getNewThreadScheduler();
        if (nt != null) {
            newThreadScheduler = nt;
        } else {
            newThreadScheduler = NewThreadScheduler.instance();
        }
    }

    /**
     * Creates and returns a {@link Scheduler} that executes work immediately on the current thread.
     * 
     * @return an {@link ImmediateScheduler} instance
     */
    public static Scheduler immediate() {
        return ImmediateScheduler.instance();
    }

    /**
     * Creates and returns a {@link Scheduler} that queues work on the current thread to be executed after the
     * current work completes.
     * 
     * @return a {@link TrampolineScheduler} instance
     */
    public static Scheduler trampoline() {
        return TrampolineScheduler.instance();
    }

    /**
     * Creates and returns a {@link Scheduler} that creates a new {@link Thread} for each unit of work.
     * 

* Unhandled errors will be delivered to the scheduler Thread's {@link java.lang.Thread.UncaughtExceptionHandler}. * * @return a {@link NewThreadScheduler} instance */ public static Scheduler newThread() { return INSTANCE.newThreadScheduler; } /** * Creates and returns a {@link Scheduler} intended for computational work. *

* This can be used for event-loops, processing callbacks and other computational work. *

* Do not perform IO-bound work on this scheduler. Use {@link #io()} instead. *

* Unhandled errors will be delivered to the scheduler Thread's {@link java.lang.Thread.UncaughtExceptionHandler}. * * @return a {@link Scheduler} meant for computation-bound work */ public static Scheduler computation() { return INSTANCE.computationScheduler; } /** * Creates and returns a {@link Scheduler} intended for IO-bound work. *

* The implementation is backed by an {@link Executor} thread-pool that will grow as needed. *

* This can be used for asynchronously performing blocking IO. *

* Do not perform computational work on this scheduler. Use {@link #computation()} instead. *

* Unhandled errors will be delivered to the scheduler Thread's {@link java.lang.Thread.UncaughtExceptionHandler}. * * @return a {@link Scheduler} meant for IO-bound work */ public static Scheduler io() { return INSTANCE.ioScheduler; } /** * Creates and returns a {@code TestScheduler}, which is useful for debugging. It allows you to test * schedules of events by manually advancing the clock at whatever pace you choose. * * @return a {@code TestScheduler} meant for debugging */ public static TestScheduler test() { return new TestScheduler(); } /** * Converts an {@link Executor} into a new Scheduler instance. * * @param executor * the executor to wrap * @return the new Scheduler wrapping the Executor */ public static Scheduler from(Executor executor) { return new ExecutorScheduler(executor); } /** * Starts those standard Schedulers which support the SchedulerLifecycle interface. *

The operation is idempotent and threadsafe. */ /* public testonly */ static void start() { Schedulers s = INSTANCE; synchronized (s) { if (s.computationScheduler instanceof SchedulerLifecycle) { ((SchedulerLifecycle) s.computationScheduler).start(); } if (s.ioScheduler instanceof SchedulerLifecycle) { ((SchedulerLifecycle) s.ioScheduler).start(); } if (s.newThreadScheduler instanceof SchedulerLifecycle) { ((SchedulerLifecycle) s.newThreadScheduler).start(); } GenericScheduledExecutorService.INSTANCE.start(); RxRingBuffer.SPSC_POOL.start(); RxRingBuffer.SPMC_POOL.start(); } } /** * Shuts down those standard Schedulers which support the SchedulerLifecycle interface. *

The operation is idempotent and threadsafe. */ public static void shutdown() { Schedulers s = INSTANCE; synchronized (s) { if (s.computationScheduler instanceof SchedulerLifecycle) { ((SchedulerLifecycle) s.computationScheduler).shutdown(); } if (s.ioScheduler instanceof SchedulerLifecycle) { ((SchedulerLifecycle) s.ioScheduler).shutdown(); } if (s.newThreadScheduler instanceof SchedulerLifecycle) { ((SchedulerLifecycle) s.newThreadScheduler).shutdown(); } GenericScheduledExecutorService.INSTANCE.shutdown(); RxRingBuffer.SPSC_POOL.shutdown(); RxRingBuffer.SPMC_POOL.shutdown(); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy