All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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