jimu-decompiled/sources/io/reactivex/internal/subscriptions/BasicIntQueueSubscription.java
2025-05-13 19:24:51 +02:00

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!");
}
}