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 extends AtomicInteger implements QueueSubscription { 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!"); } }