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

com.amazonaws.util.RxSchedulers Maven / Gradle / Ivy

The newest version!
package com.amazonaws.util;

import rx.Scheduler;

public final class RxSchedulers {

    private final Scheduler computationScheduler;

    private static final RxSchedulers INSTANCE = new RxSchedulers();

    private RxSchedulers() {
        computationScheduler = new EventLoopsScheduler();
    }

    public static Scheduler computation() {
        return INSTANCE.computationScheduler;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy