io.reactivex.disposables.Disposables Java Examples

The following examples show how to use io.reactivex.disposables.Disposables. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: HandlerScheduler.java    From atlas with Apache License 2.0 6 votes vote down vote up
@Override
public Disposable schedule(Runnable run, long delay, TimeUnit unit) {
    if (run == null) throw new NullPointerException("run == null");
    if (unit == null) throw new NullPointerException("unit == null");

    if (disposed) {
        return Disposables.disposed();
    }

    run = RxJavaPlugins.onSchedule(run);

    ScheduledRunnable scheduled = new ScheduledRunnable(handler, run);

    Message message = Message.obtain(handler, scheduled);
    message.obj = this; // Used as token for batch disposal of this worker's runnables.

    handler.sendMessageDelayed(message, Math.max(0L, unit.toMillis(delay)));

    // Re-check disposed state for removing in case we were racing a call to dispose().
    if (disposed) {
        handler.removeCallbacks(scheduled);
        return Disposables.disposed();
    }

    return scheduled;
}
 
Example #2
Source File: ClientOperationQueueImpl.java    From RxAndroidBle with Apache License 2.0 6 votes vote down vote up
@Override
@RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
public <T> Observable<T> queue(final Operation<T> operation) {
    return Observable.create(new ObservableOnSubscribe<T>() {
        @Override
        public void subscribe(ObservableEmitter<T> tEmitter) {
            final FIFORunnableEntry entry = new FIFORunnableEntry<>(operation, tEmitter);

            tEmitter.setDisposable(Disposables.fromAction(new Action() {
                @Override
                public void run() {
                    if (queue.remove(entry)) {
                        logOperationRemoved(operation);
                    }
                }
            }));

            logOperationQueued(operation);
            queue.add(entry);
        }
    });
}
 
Example #3
Source File: AuthStateChangesOnSubscribe.java    From rxfirebase with Apache License 2.0 6 votes vote down vote up
/**
 * @param emitter
 */
@Override
public void subscribe(final ObservableEmitter<FirebaseAuth> emitter) {
    final FirebaseAuth.AuthStateListener listener = new FirebaseAuth.AuthStateListener() {
        @Override
        public void onAuthStateChanged(@NonNull FirebaseAuth firebaseAuth) {
            if (!emitter.isDisposed()) {
                emitter.onNext(firebaseAuth);
            }
        }
    };

    instance.addAuthStateListener(listener);

    emitter.setDisposable(Disposables.fromAction(new Action() {
        @Override
        public void run() throws Exception {
            instance.removeAuthStateListener(listener);
        }
    }));
}
 
Example #4
Source File: ViewClickObservable.java    From Tangram-Android with MIT License 5 votes vote down vote up
public static boolean checkMainThread(Observer<?> observer) {
    if (Looper.myLooper() != Looper.getMainLooper()) {
        observer.onSubscribe(Disposables.empty());
        observer.onError(new IllegalStateException(
            "Expected to be called on the main thread but was " + Thread.currentThread().getName()));
        return false;
    }
    return true;
}
 
Example #5
Source File: Preconditions.java    From CameraButton with Apache License 2.0 5 votes vote down vote up
static boolean checkMainThread(Observer<?> observer) {
    if (Looper.myLooper() != Looper.getMainLooper()) {
        observer.onSubscribe(Disposables.empty());
        observer.onError(new IllegalStateException(
                "Expected to be called on the main thread but was " + Thread.currentThread().getName()));
        return false;
    }
    return true;
}
 
Example #6
Source File: FlowableSingleDeferUntilRequest.java    From rxjava2-jdbc with Apache License 2.0 5 votes vote down vote up
@Override
public void cancel() {
    if (disposable.compareAndSet(null, Disposables.disposed())) {
        return;
    } else {
        disposable.get().dispose();
        // clear for GC
        disposable.set(Disposables.disposed());
    }
}
 
Example #7
Source File: FlowableSingleDeferUntilRequest.java    From rxjava2-jdbc with Apache License 2.0 5 votes vote down vote up
@Override
public void onSubscribe(Disposable d) {
    if (!disposable.compareAndSet(null, d)) {
        // already cancelled
        d.dispose();
        disposable.set(Disposables.disposed());
    }
}
 
Example #8
Source File: ClientStateObservable.java    From RxAndroidBle with Apache License 2.0 5 votes vote down vote up
@Override
protected void subscribeActual(Observer<? super RxBleClient.State> observer) {
    if (!rxBleAdapterWrapper.hasBluetoothAdapter()) {
        observer.onSubscribe(Disposables.empty());
        observer.onComplete();
        return;
    }

    checkPermissionUntilGranted(locationServicesStatus, timerScheduler)
            .flatMapObservable(new Function<Boolean, Observable<RxBleClient.State>>() {
                @Override
                public Observable<RxBleClient.State> apply(Boolean permissionWasInitiallyGranted) {
                    Observable<RxBleClient.State> stateObservable = checkAdapterAndServicesState(
                            rxBleAdapterWrapper,
                            bleAdapterStateObservable,
                            locationServicesOkObservable
                    )
                            .distinctUntilChanged();
                    return permissionWasInitiallyGranted
                            /*
                             * If permission was granted from the beginning then the first value is not a change. The above Observable
                             * does emit value at the moment of subscription.
                             */
                            ? stateObservable.skip(1)
                            : stateObservable;
                }
            })
            .subscribe(observer);
}
 
Example #9
Source File: FlowableRepeatingTransform.java    From rxjava2-extras with Apache License 2.0 4 votes vote down vote up
@Override
protected void subscribeActual(Observer<? super T> observer) {
    observer.onSubscribe(Disposables.empty());
    this.observer = observer;
}
 
Example #10
Source File: RandomRelay.java    From tutorials with MIT License 4 votes vote down vote up
@Override
protected void subscribeActual(Observer<? super Integer> observer) {
    observers.add(observer);
    observer.onSubscribe(Disposables.fromRunnable(() -> System.out.println("Disposed")));
}