13 lines
208 B
Java
13 lines
208 B
Java
package io.reactivex.internal.fuseable;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface SimpleQueue<T> {
|
|
void clear();
|
|
|
|
boolean isEmpty();
|
|
|
|
boolean offer(T t);
|
|
|
|
T poll() throws Exception;
|
|
}
|