You've already forked dart-core-sdk
202 lines
10 KiB
Dart
202 lines
10 KiB
Dart
//
|
|
// Generated code. Do not modify.
|
|
// source: handlingunitQuery.proto
|
|
//
|
|
// @dart = 3.3
|
|
|
|
// 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 $40;
|
|
import 'handlingunitQuery.pb.dart' as $39;
|
|
import 'shared.pb.dart' as $35;
|
|
|
|
export 'handlingunitQuery.pb.dart';
|
|
|
|
@$pb.GrpcServiceName('api.HandlingunitQuery')
|
|
class HandlingunitQueryClient extends $grpc.Client {
|
|
static final _$getByIds = $grpc.ClientMethod<$39.HandlingunitByIdQuery, $39.HandlingunitByIdResult>(
|
|
'/api.HandlingunitQuery/GetByIds',
|
|
($39.HandlingunitByIdQuery value) => value.writeToBuffer(),
|
|
($core.List<$core.int> value) => $39.HandlingunitByIdResult.fromBuffer(value));
|
|
static final _$find = $grpc.ClientMethod<$39.HandlingunitByFilterQuery, $39.HandlingunitByFilterResult>(
|
|
'/api.HandlingunitQuery/Find',
|
|
($39.HandlingunitByFilterQuery value) => value.writeToBuffer(),
|
|
($core.List<$core.int> value) => $39.HandlingunitByFilterResult.fromBuffer(value));
|
|
static final _$findTracked = $grpc.ClientMethod<$39.HandlingunitByFilterQuery, $39.HandlingunitByFilterResult>(
|
|
'/api.HandlingunitQuery/FindTracked',
|
|
($39.HandlingunitByFilterQuery value) => value.writeToBuffer(),
|
|
($core.List<$core.int> value) => $39.HandlingunitByFilterResult.fromBuffer(value));
|
|
static final _$findMatchingFieldValues = $grpc.ClientMethod<$39.HandlingunitByMatchQuery, $39.HandlingunitByMatchResult>(
|
|
'/api.HandlingunitQuery/FindMatchingFieldValues',
|
|
($39.HandlingunitByMatchQuery value) => value.writeToBuffer(),
|
|
($core.List<$core.int> value) => $39.HandlingunitByMatchResult.fromBuffer(value));
|
|
static final _$findMatchingFieldElements = $grpc.ClientMethod<$35.ElementByMatchQuery, $35.ElementByMatchResult>(
|
|
'/api.HandlingunitQuery/FindMatchingFieldElements',
|
|
($35.ElementByMatchQuery value) => value.writeToBuffer(),
|
|
($core.List<$core.int> value) => $35.ElementByMatchResult.fromBuffer(value));
|
|
static final _$getKPIData = $grpc.ClientMethod<$40.GetKPIDataQuery, $40.GetKPIDataResult>(
|
|
'/api.HandlingunitQuery/GetKPIData',
|
|
($40.GetKPIDataQuery value) => value.writeToBuffer(),
|
|
($core.List<$core.int> value) => $40.GetKPIDataResult.fromBuffer(value));
|
|
static final _$extract = $grpc.ClientMethod<$35.ExtractQuery, $35.ExtractResult>(
|
|
'/api.HandlingunitQuery/Extract',
|
|
($35.ExtractQuery value) => value.writeToBuffer(),
|
|
($core.List<$core.int> value) => $35.ExtractResult.fromBuffer(value));
|
|
static final _$countLines = $grpc.ClientMethod<$35.CountLinesQuery, $35.CountLinesResult>(
|
|
'/api.HandlingunitQuery/CountLines',
|
|
($35.CountLinesQuery value) => value.writeToBuffer(),
|
|
($core.List<$core.int> value) => $35.CountLinesResult.fromBuffer(value));
|
|
|
|
HandlingunitQueryClient($grpc.ClientChannel channel,
|
|
{$grpc.CallOptions? options,
|
|
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
|
|
: super(channel, options: options,
|
|
interceptors: interceptors);
|
|
|
|
$grpc.ResponseFuture<$39.HandlingunitByIdResult> getByIds($39.HandlingunitByIdQuery request, {$grpc.CallOptions? options}) {
|
|
return $createUnaryCall(_$getByIds, request, options: options);
|
|
}
|
|
|
|
$grpc.ResponseFuture<$39.HandlingunitByFilterResult> find($39.HandlingunitByFilterQuery request, {$grpc.CallOptions? options}) {
|
|
return $createUnaryCall(_$find, request, options: options);
|
|
}
|
|
|
|
$grpc.ResponseFuture<$39.HandlingunitByFilterResult> findTracked($39.HandlingunitByFilterQuery request, {$grpc.CallOptions? options}) {
|
|
return $createUnaryCall(_$findTracked, request, options: options);
|
|
}
|
|
|
|
$grpc.ResponseFuture<$39.HandlingunitByMatchResult> findMatchingFieldValues($39.HandlingunitByMatchQuery request, {$grpc.CallOptions? options}) {
|
|
return $createUnaryCall(_$findMatchingFieldValues, request, options: options);
|
|
}
|
|
|
|
$grpc.ResponseFuture<$35.ElementByMatchResult> findMatchingFieldElements($35.ElementByMatchQuery request, {$grpc.CallOptions? options}) {
|
|
return $createUnaryCall(_$findMatchingFieldElements, request, options: options);
|
|
}
|
|
|
|
$grpc.ResponseFuture<$40.GetKPIDataResult> getKPIData($40.GetKPIDataQuery request, {$grpc.CallOptions? options}) {
|
|
return $createUnaryCall(_$getKPIData, request, options: options);
|
|
}
|
|
|
|
$grpc.ResponseFuture<$35.ExtractResult> extract($35.ExtractQuery request, {$grpc.CallOptions? options}) {
|
|
return $createUnaryCall(_$extract, request, options: options);
|
|
}
|
|
|
|
$grpc.ResponseFuture<$35.CountLinesResult> countLines($35.CountLinesQuery request, {$grpc.CallOptions? options}) {
|
|
return $createUnaryCall(_$countLines, request, options: options);
|
|
}
|
|
}
|
|
|
|
@$pb.GrpcServiceName('api.HandlingunitQuery')
|
|
abstract class HandlingunitQueryServiceBase extends $grpc.Service {
|
|
$core.String get $name => 'api.HandlingunitQuery';
|
|
|
|
HandlingunitQueryServiceBase() {
|
|
$addMethod($grpc.ServiceMethod<$39.HandlingunitByIdQuery, $39.HandlingunitByIdResult>(
|
|
'GetByIds',
|
|
getByIds_Pre,
|
|
false,
|
|
false,
|
|
($core.List<$core.int> value) => $39.HandlingunitByIdQuery.fromBuffer(value),
|
|
($39.HandlingunitByIdResult value) => value.writeToBuffer()));
|
|
$addMethod($grpc.ServiceMethod<$39.HandlingunitByFilterQuery, $39.HandlingunitByFilterResult>(
|
|
'Find',
|
|
find_Pre,
|
|
false,
|
|
false,
|
|
($core.List<$core.int> value) => $39.HandlingunitByFilterQuery.fromBuffer(value),
|
|
($39.HandlingunitByFilterResult value) => value.writeToBuffer()));
|
|
$addMethod($grpc.ServiceMethod<$39.HandlingunitByFilterQuery, $39.HandlingunitByFilterResult>(
|
|
'FindTracked',
|
|
findTracked_Pre,
|
|
false,
|
|
false,
|
|
($core.List<$core.int> value) => $39.HandlingunitByFilterQuery.fromBuffer(value),
|
|
($39.HandlingunitByFilterResult value) => value.writeToBuffer()));
|
|
$addMethod($grpc.ServiceMethod<$39.HandlingunitByMatchQuery, $39.HandlingunitByMatchResult>(
|
|
'FindMatchingFieldValues',
|
|
findMatchingFieldValues_Pre,
|
|
false,
|
|
false,
|
|
($core.List<$core.int> value) => $39.HandlingunitByMatchQuery.fromBuffer(value),
|
|
($39.HandlingunitByMatchResult value) => value.writeToBuffer()));
|
|
$addMethod($grpc.ServiceMethod<$35.ElementByMatchQuery, $35.ElementByMatchResult>(
|
|
'FindMatchingFieldElements',
|
|
findMatchingFieldElements_Pre,
|
|
false,
|
|
false,
|
|
($core.List<$core.int> value) => $35.ElementByMatchQuery.fromBuffer(value),
|
|
($35.ElementByMatchResult value) => value.writeToBuffer()));
|
|
$addMethod($grpc.ServiceMethod<$40.GetKPIDataQuery, $40.GetKPIDataResult>(
|
|
'GetKPIData',
|
|
getKPIData_Pre,
|
|
false,
|
|
false,
|
|
($core.List<$core.int> value) => $40.GetKPIDataQuery.fromBuffer(value),
|
|
($40.GetKPIDataResult value) => value.writeToBuffer()));
|
|
$addMethod($grpc.ServiceMethod<$35.ExtractQuery, $35.ExtractResult>(
|
|
'Extract',
|
|
extract_Pre,
|
|
false,
|
|
false,
|
|
($core.List<$core.int> value) => $35.ExtractQuery.fromBuffer(value),
|
|
($35.ExtractResult value) => value.writeToBuffer()));
|
|
$addMethod($grpc.ServiceMethod<$35.CountLinesQuery, $35.CountLinesResult>(
|
|
'CountLines',
|
|
countLines_Pre,
|
|
false,
|
|
false,
|
|
($core.List<$core.int> value) => $35.CountLinesQuery.fromBuffer(value),
|
|
($35.CountLinesResult value) => value.writeToBuffer()));
|
|
}
|
|
|
|
$async.Future<$39.HandlingunitByIdResult> getByIds_Pre($grpc.ServiceCall $call, $async.Future<$39.HandlingunitByIdQuery> $request) async {
|
|
return getByIds($call, await $request);
|
|
}
|
|
|
|
$async.Future<$39.HandlingunitByFilterResult> find_Pre($grpc.ServiceCall $call, $async.Future<$39.HandlingunitByFilterQuery> $request) async {
|
|
return find($call, await $request);
|
|
}
|
|
|
|
$async.Future<$39.HandlingunitByFilterResult> findTracked_Pre($grpc.ServiceCall $call, $async.Future<$39.HandlingunitByFilterQuery> $request) async {
|
|
return findTracked($call, await $request);
|
|
}
|
|
|
|
$async.Future<$39.HandlingunitByMatchResult> findMatchingFieldValues_Pre($grpc.ServiceCall $call, $async.Future<$39.HandlingunitByMatchQuery> $request) async {
|
|
return findMatchingFieldValues($call, await $request);
|
|
}
|
|
|
|
$async.Future<$35.ElementByMatchResult> findMatchingFieldElements_Pre($grpc.ServiceCall $call, $async.Future<$35.ElementByMatchQuery> $request) async {
|
|
return findMatchingFieldElements($call, await $request);
|
|
}
|
|
|
|
$async.Future<$40.GetKPIDataResult> getKPIData_Pre($grpc.ServiceCall $call, $async.Future<$40.GetKPIDataQuery> $request) async {
|
|
return getKPIData($call, await $request);
|
|
}
|
|
|
|
$async.Future<$35.ExtractResult> extract_Pre($grpc.ServiceCall $call, $async.Future<$35.ExtractQuery> $request) async {
|
|
return extract($call, await $request);
|
|
}
|
|
|
|
$async.Future<$35.CountLinesResult> countLines_Pre($grpc.ServiceCall $call, $async.Future<$35.CountLinesQuery> $request) async {
|
|
return countLines($call, await $request);
|
|
}
|
|
|
|
$async.Future<$39.HandlingunitByIdResult> getByIds($grpc.ServiceCall call, $39.HandlingunitByIdQuery request);
|
|
$async.Future<$39.HandlingunitByFilterResult> find($grpc.ServiceCall call, $39.HandlingunitByFilterQuery request);
|
|
$async.Future<$39.HandlingunitByFilterResult> findTracked($grpc.ServiceCall call, $39.HandlingunitByFilterQuery request);
|
|
$async.Future<$39.HandlingunitByMatchResult> findMatchingFieldValues($grpc.ServiceCall call, $39.HandlingunitByMatchQuery request);
|
|
$async.Future<$35.ElementByMatchResult> findMatchingFieldElements($grpc.ServiceCall call, $35.ElementByMatchQuery request);
|
|
$async.Future<$40.GetKPIDataResult> getKPIData($grpc.ServiceCall call, $40.GetKPIDataQuery request);
|
|
$async.Future<$35.ExtractResult> extract($grpc.ServiceCall call, $35.ExtractQuery request);
|
|
$async.Future<$35.CountLinesResult> countLines($grpc.ServiceCall call, $35.CountLinesQuery request);
|
|
}
|