19 lines
671 B
Java
19 lines
671 B
Java
package io.reactivex.internal.subscriptions;
|
|
|
|
import io.reactivex.internal.fuseable.QueueSubscription;
|
|
import java.util.concurrent.atomic.AtomicInteger;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public abstract class BasicIntQueueSubscription<T> extends AtomicInteger implements QueueSubscription<T> {
|
|
private static final long serialVersionUID = -6671519529404341862L;
|
|
|
|
@Override // io.reactivex.internal.fuseable.SimpleQueue
|
|
public final boolean offer(T t) {
|
|
throw new UnsupportedOperationException("Should not be called!");
|
|
}
|
|
|
|
public final boolean offer(T t, T t2) {
|
|
throw new UnsupportedOperationException("Should not be called!");
|
|
}
|
|
}
|