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 6
6
7
7
import javax .annotation .WillNotClose ;
8
8
9
- import io .grpc .ExperimentalApi ;
10
-
11
9
import tech .ydb .core .Result ;
12
10
import tech .ydb .core .grpc .GrpcTransport ;
13
11
import tech .ydb .query .impl .QueryClientImpl ;
18
16
*
19
17
* @author Aleksandr Gorshenin
20
18
*/
21
- @ ExperimentalApi ("QueryService is experimental and API may change without notice" )
22
19
public interface QueryClient extends AutoCloseable {
23
20
static Builder newClient (@ WillNotClose GrpcTransport transport ) {
24
21
return QueryClientImpl .newClient (transport );
Original file line number Diff line number Diff line change 2
2
3
3
import java .util .concurrent .CompletableFuture ;
4
4
5
- import io .grpc .ExperimentalApi ;
6
-
7
5
import tech .ydb .common .transaction .TxMode ;
8
6
import tech .ydb .core .Result ;
9
7
import tech .ydb .query .settings .BeginTransactionSettings ;
22
20
*
23
21
* @author Aleksandr Gorshenin
24
22
*/
25
- @ ExperimentalApi ("QueryService is experimental and API may change without notice" )
26
23
public interface QuerySession extends AutoCloseable {
27
24
28
25
/**
Original file line number Diff line number Diff line change 2
2
3
3
import java .util .concurrent .CompletableFuture ;
4
4
5
- import io .grpc .ExperimentalApi ;
6
-
7
5
import tech .ydb .core .Issue ;
8
6
import tech .ydb .core .Result ;
9
7
import tech .ydb .query .result .QueryInfo ;
13
11
*
14
12
* @author Aleksandr Gorshenin
15
13
*/
16
- @ ExperimentalApi ("QueryService is experimental and API may change without notice" )
17
14
public interface QueryStream {
18
15
interface PartsHandler {
19
16
default void onIssues (Issue [] issues ) { }
Original file line number Diff line number Diff line change 2
2
3
3
import java .util .concurrent .CompletableFuture ;
4
4
5
- import io .grpc .ExperimentalApi ;
6
-
7
5
import tech .ydb .common .transaction .YdbTransaction ;
8
6
import tech .ydb .core .Result ;
9
7
import tech .ydb .core .Status ;
22
20
*
23
21
* @author Aleksandr Gorshenin
24
22
*/
25
- @ ExperimentalApi ("QueryService is experimental and API may change without notice" )
26
23
public interface QueryTransaction extends YdbTransaction {
27
24
28
25
/**
You can’t perform that action at this time.
0 commit comments