blob: deba5739dea0d97e2a3628a8a37d71a6661e0676 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package cgeo.geocaching.utils;
import rx.Scheduler;
import rx.schedulers.Schedulers;
public class RxUtils {
// Utility class, not to be instanciated
private RxUtils() {}
public final static Scheduler computationScheduler = Schedulers.computation();
}
|