package io.reactivex; /* loaded from: classes2.dex */ public interface Emitter { void onComplete(); void onError(Throwable th); void onNext(T t); }