mirror of
https://github.com/github/codeql.git
synced 2025-12-20 10:46:30 +01:00
14 lines
309 B
Java
Generated
14 lines
309 B
Java
Generated
// Generated automatically from org.reactivestreams.Subscriber for testing purposes
|
|
|
|
package org.reactivestreams;
|
|
|
|
import org.reactivestreams.Subscription;
|
|
|
|
public interface Subscriber<T>
|
|
{
|
|
void onComplete();
|
|
void onError(Throwable p0);
|
|
void onNext(T p0);
|
|
void onSubscribe(Subscription p0);
|
|
}
|