Latest generation

This commit is contained in:
ci core model
2025-03-17 13:04:48 +00:00
parent 91448f9767
commit 14bdd43dfa
448 changed files with 177581 additions and 92 deletions

View File

@@ -0,0 +1,121 @@
//
// Generated code. Do not modify.
// source: executionflowQuery.proto
//
// @dart = 2.12
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:async' as $async;
import 'dart:core' as $core;
import 'package:grpc/service_api.dart' as $grpc;
import 'package:protobuf/protobuf.dart' as $pb;
import 'clickhouse.pb.dart' as $30;
import 'executionflowQuery.pb.dart' as $29;
import 'shared.pb.dart' as $28;
export 'executionflowQuery.pb.dart';
@$pb.GrpcServiceName('api.ExecutionflowQuery')
class ExecutionflowQueryClient extends $grpc.Client {
static final _$getByIds = $grpc.ClientMethod<$29.ExecutionflowByIdQuery, $29.ExecutionflowByIdResult>(
'/api.ExecutionflowQuery/GetByIds',
($29.ExecutionflowByIdQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $29.ExecutionflowByIdResult.fromBuffer(value));
static final _$getKPIData = $grpc.ClientMethod<$30.GetKPIDataQuery, $30.GetKPIDataResult>(
'/api.ExecutionflowQuery/GetKPIData',
($30.GetKPIDataQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $30.GetKPIDataResult.fromBuffer(value));
static final _$countLines = $grpc.ClientMethod<$28.CountLinesQuery, $28.CountLinesResult>(
'/api.ExecutionflowQuery/CountLines',
($28.CountLinesQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $28.CountLinesResult.fromBuffer(value));
static final _$find = $grpc.ClientMethod<$29.ExecutionflowByFilterQuery, $29.ExecutionflowByFilterResult>(
'/api.ExecutionflowQuery/Find',
($29.ExecutionflowByFilterQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $29.ExecutionflowByFilterResult.fromBuffer(value));
ExecutionflowQueryClient($grpc.ClientChannel channel,
{$grpc.CallOptions? options,
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
: super(channel, options: options,
interceptors: interceptors);
$grpc.ResponseFuture<$29.ExecutionflowByIdResult> getByIds($29.ExecutionflowByIdQuery request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$getByIds, request, options: options);
}
$grpc.ResponseFuture<$30.GetKPIDataResult> getKPIData($30.GetKPIDataQuery request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$getKPIData, request, options: options);
}
$grpc.ResponseFuture<$28.CountLinesResult> countLines($28.CountLinesQuery request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$countLines, request, options: options);
}
$grpc.ResponseFuture<$29.ExecutionflowByFilterResult> find($29.ExecutionflowByFilterQuery request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$find, request, options: options);
}
}
@$pb.GrpcServiceName('api.ExecutionflowQuery')
abstract class ExecutionflowQueryServiceBase extends $grpc.Service {
$core.String get $name => 'api.ExecutionflowQuery';
ExecutionflowQueryServiceBase() {
$addMethod($grpc.ServiceMethod<$29.ExecutionflowByIdQuery, $29.ExecutionflowByIdResult>(
'GetByIds',
getByIds_Pre,
false,
false,
($core.List<$core.int> value) => $29.ExecutionflowByIdQuery.fromBuffer(value),
($29.ExecutionflowByIdResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$30.GetKPIDataQuery, $30.GetKPIDataResult>(
'GetKPIData',
getKPIData_Pre,
false,
false,
($core.List<$core.int> value) => $30.GetKPIDataQuery.fromBuffer(value),
($30.GetKPIDataResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$28.CountLinesQuery, $28.CountLinesResult>(
'CountLines',
countLines_Pre,
false,
false,
($core.List<$core.int> value) => $28.CountLinesQuery.fromBuffer(value),
($28.CountLinesResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$29.ExecutionflowByFilterQuery, $29.ExecutionflowByFilterResult>(
'Find',
find_Pre,
false,
false,
($core.List<$core.int> value) => $29.ExecutionflowByFilterQuery.fromBuffer(value),
($29.ExecutionflowByFilterResult value) => value.writeToBuffer()));
}
$async.Future<$29.ExecutionflowByIdResult> getByIds_Pre($grpc.ServiceCall call, $async.Future<$29.ExecutionflowByIdQuery> request) async {
return getByIds(call, await request);
}
$async.Future<$30.GetKPIDataResult> getKPIData_Pre($grpc.ServiceCall call, $async.Future<$30.GetKPIDataQuery> request) async {
return getKPIData(call, await request);
}
$async.Future<$28.CountLinesResult> countLines_Pre($grpc.ServiceCall call, $async.Future<$28.CountLinesQuery> request) async {
return countLines(call, await request);
}
$async.Future<$29.ExecutionflowByFilterResult> find_Pre($grpc.ServiceCall call, $async.Future<$29.ExecutionflowByFilterQuery> request) async {
return find(call, await request);
}
$async.Future<$29.ExecutionflowByIdResult> getByIds($grpc.ServiceCall call, $29.ExecutionflowByIdQuery request);
$async.Future<$30.GetKPIDataResult> getKPIData($grpc.ServiceCall call, $30.GetKPIDataQuery request);
$async.Future<$28.CountLinesResult> countLines($grpc.ServiceCall call, $28.CountLinesQuery request);
$async.Future<$29.ExecutionflowByFilterResult> find($grpc.ServiceCall call, $29.ExecutionflowByFilterQuery request);
}