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

com.yandex.ydb.core.rpc.StreamObserver Maven / Gradle / Ivy

There is a newer version: 1.45.6
Show newest version
package com.yandex.ydb.core.rpc;

import com.yandex.ydb.core.Status;


/**
 * @author Sergey Polovko
 */
public interface StreamObserver {

    void onNext(V value);

    void onError(Status status);

    void onCompleted();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy