File tree Expand file tree Collapse file tree 4 files changed +0
-12
lines changed
query/src/main/java/tech/ydb/query Expand file tree Collapse file tree 4 files changed +0
-12
lines changed Original file line number Diff line number Diff line change 66
77import javax .annotation .WillNotClose ;
88
9- import io .grpc .ExperimentalApi ;
10-
119import tech .ydb .core .Result ;
1210import tech .ydb .core .grpc .GrpcTransport ;
1311import tech .ydb .query .impl .QueryClientImpl ;
1816 *
1917 * @author Aleksandr Gorshenin
2018 */
21- @ ExperimentalApi ("QueryService is experimental and API may change without notice" )
2219public interface QueryClient extends AutoCloseable {
2320 static Builder newClient (@ WillNotClose GrpcTransport transport ) {
2421 return QueryClientImpl .newClient (transport );
Original file line number Diff line number Diff line change 22
33import java .util .concurrent .CompletableFuture ;
44
5- import io .grpc .ExperimentalApi ;
6-
75import tech .ydb .common .transaction .TxMode ;
86import tech .ydb .core .Result ;
97import tech .ydb .query .settings .BeginTransactionSettings ;
2220 *
2321 * @author Aleksandr Gorshenin
2422 */
25- @ ExperimentalApi ("QueryService is experimental and API may change without notice" )
2623public interface QuerySession extends AutoCloseable {
2724
2825 /**
Original file line number Diff line number Diff line change 22
33import java .util .concurrent .CompletableFuture ;
44
5- import io .grpc .ExperimentalApi ;
6-
75import tech .ydb .core .Issue ;
86import tech .ydb .core .Result ;
97import tech .ydb .query .result .QueryInfo ;
1311 *
1412 * @author Aleksandr Gorshenin
1513 */
16- @ ExperimentalApi ("QueryService is experimental and API may change without notice" )
1714public interface QueryStream {
1815 interface PartsHandler {
1916 default void onIssues (Issue [] issues ) { }
Original file line number Diff line number Diff line change 22
33import java .util .concurrent .CompletableFuture ;
44
5- import io .grpc .ExperimentalApi ;
6-
75import tech .ydb .common .transaction .YdbTransaction ;
86import tech .ydb .core .Result ;
97import tech .ydb .core .Status ;
2220 *
2321 * @author Aleksandr Gorshenin
2422 */
25- @ ExperimentalApi ("QueryService is experimental and API may change without notice" )
2623public interface QueryTransaction extends YdbTransaction {
2724
2825 /**
You can’t perform that action at this time.
0 commit comments