
tech.ydb.core.rpc.StreamObserver Maven / Gradle / Ivy
package tech.ydb.core.rpc;
import tech.ydb.core.Status;
/**
* @author Sergey Polovko
*/
public interface StreamObserver {
void onNext(V value);
void onError(Status status);
void onCompleted();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy