java.src.com.exactpro.th2.read.db.grpc.AsyncReadDbService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grpc-read-db Show documentation
Show all versions of grpc-read-db Show documentation
gRPC API for executing requests in read-db application
package com.exactpro.th2.read.db.grpc;
import com.google.protobuf.Empty;
import io.grpc.stub.StreamObserver;
import java.lang.String;
import java.util.Map;
public interface AsyncReadDbService {
void execute(QueryRequest input, StreamObserver observer);
void execute(QueryRequest input, Map properties,
StreamObserver observer);
void startPulling(DbPullRequest input, StreamObserver observer);
void startPulling(DbPullRequest input, Map properties,
StreamObserver observer);
void stopPulling(StopPullingRequest input, StreamObserver observer);
void stopPulling(StopPullingRequest input, Map properties,
StreamObserver observer);
}