1// Signature format: 4.0 2package androidx.work { 3 4 public abstract class RxWorker extends androidx.work.ListenableWorker { 5 ctor public RxWorker(android.content.Context, androidx.work.WorkerParameters); 6 method @MainThread public abstract io.reactivex.Single<androidx.work.ListenableWorker.Result!> createWork(); 7 method protected io.reactivex.Scheduler getBackgroundScheduler(); 8 method public io.reactivex.Single<androidx.work.ForegroundInfo!> getForegroundInfo(); 9 method public final io.reactivex.Completable setCompletableProgress(androidx.work.Data); 10 method public final io.reactivex.Completable setForeground(androidx.work.ForegroundInfo); 11 method @Deprecated public final io.reactivex.Single<java.lang.Void!> setProgress(androidx.work.Data); 12 method public com.google.common.util.concurrent.ListenableFuture<androidx.work.ListenableWorker.Result!> startWork(); 13 } 14 15} 16 17