java.src.com.exactpro.th2.read.db.grpc.ReadDbService 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 java.lang.String;
import java.util.Iterator;
import java.util.Map;
public interface ReadDbService {
Iterator execute(QueryRequest input);
Iterator execute(QueryRequest input, Map properties);
DbPullResponse startPulling(DbPullRequest input);
DbPullResponse startPulling(DbPullRequest input, Map properties);
Empty stopPulling(StopPullingRequest input);
Empty stopPulling(StopPullingRequest input, Map properties);
}