Initial commit
This commit is contained in:
6
sources/org/reactivestreams/Publisher.java
Normal file
6
sources/org/reactivestreams/Publisher.java
Normal file
@@ -0,0 +1,6 @@
|
||||
package org.reactivestreams;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public interface Publisher<T> {
|
||||
void a(Subscriber<? super T> subscriber);
|
||||
}
|
12
sources/org/reactivestreams/Subscriber.java
Normal file
12
sources/org/reactivestreams/Subscriber.java
Normal file
@@ -0,0 +1,12 @@
|
||||
package org.reactivestreams;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public interface Subscriber<T> {
|
||||
void onComplete();
|
||||
|
||||
void onError(Throwable th);
|
||||
|
||||
void onNext(T t);
|
||||
|
||||
void onSubscribe(Subscription subscription);
|
||||
}
|
8
sources/org/reactivestreams/Subscription.java
Normal file
8
sources/org/reactivestreams/Subscription.java
Normal file
@@ -0,0 +1,8 @@
|
||||
package org.reactivestreams;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public interface Subscription {
|
||||
void cancel();
|
||||
|
||||
void request(long j);
|
||||
}
|
Reference in New Issue
Block a user