Files
dart-core-sdk/lib/trackingQuery.pbgrpc.dart
2025-05-05 09:13:40 +00:00

81 lines
3.2 KiB
Dart

//
// Generated code. Do not modify.
// source: trackingQuery.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 'shared.pb.dart' as $35;
import 'trackingQuery.pb.dart' as $42;
export 'trackingQuery.pb.dart';
@$pb.GrpcServiceName('api.TrackingQuery')
class TrackingQueryClient extends $grpc.Client {
static final _$getByIds = $grpc.ClientMethod<$42.TrackingByIdQuery, $42.TrackingByIdResult>(
'/api.TrackingQuery/GetByIds',
($42.TrackingByIdQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $42.TrackingByIdResult.fromBuffer(value));
static final _$countLines = $grpc.ClientMethod<$35.CountLinesQuery, $35.CountLinesResult>(
'/api.TrackingQuery/CountLines',
($35.CountLinesQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $35.CountLinesResult.fromBuffer(value));
TrackingQueryClient($grpc.ClientChannel channel,
{$grpc.CallOptions? options,
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
: super(channel, options: options,
interceptors: interceptors);
$grpc.ResponseFuture<$42.TrackingByIdResult> getByIds($42.TrackingByIdQuery request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$getByIds, request, options: options);
}
$grpc.ResponseFuture<$35.CountLinesResult> countLines($35.CountLinesQuery request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$countLines, request, options: options);
}
}
@$pb.GrpcServiceName('api.TrackingQuery')
abstract class TrackingQueryServiceBase extends $grpc.Service {
$core.String get $name => 'api.TrackingQuery';
TrackingQueryServiceBase() {
$addMethod($grpc.ServiceMethod<$42.TrackingByIdQuery, $42.TrackingByIdResult>(
'GetByIds',
getByIds_Pre,
false,
false,
($core.List<$core.int> value) => $42.TrackingByIdQuery.fromBuffer(value),
($42.TrackingByIdResult 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<$42.TrackingByIdResult> getByIds_Pre($grpc.ServiceCall $call, $async.Future<$42.TrackingByIdQuery> $request) async {
return getByIds($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<$42.TrackingByIdResult> getByIds($grpc.ServiceCall call, $42.TrackingByIdQuery request);
$async.Future<$35.CountLinesResult> countLines($grpc.ServiceCall call, $35.CountLinesQuery request);
}