discord-jadx/app/src/main/java/j0/l/a/i0.java

28 lines
738 B
Java
Raw Normal View History

2021-11-08 18:25:28 +00:00
package j0.l.a;
2021-06-27 20:44:35 +00:00
import java.util.concurrent.TimeUnit;
import rx.Observable;
import rx.Scheduler;
import rx.Subscriber;
2022-03-02 20:59:20 +00:00
/* compiled from: OnSubscribeTimerOnce.java */
/* loaded from: classes3.dex */
2021-06-27 20:44:35 +00:00
public final class i0 implements Observable.a<Long> {
2021-12-17 22:03:14 +00:00
public final long j;
public final TimeUnit k;
public final Scheduler l;
2021-06-27 20:44:35 +00:00
public i0(long j, TimeUnit timeUnit, Scheduler scheduler) {
2021-12-17 22:03:14 +00:00
this.j = j;
this.k = timeUnit;
this.l = scheduler;
2021-06-27 20:44:35 +00:00
}
@Override // rx.functions.Action1
public void call(Object obj) {
Subscriber subscriber = (Subscriber) obj;
2021-12-17 22:03:14 +00:00
Scheduler.Worker a = this.l.a();
2021-06-27 20:44:35 +00:00
subscriber.add(a);
2021-12-17 22:03:14 +00:00
a.b(new h0(this, subscriber), this.j, this.k);
2021-06-27 20:44:35 +00:00
}
}