Files
dart-core-sdk/lib/trackingQuery.pbgrpc.dart
2025-03-31 12:58:50 +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 $29;
import 'trackingQuery.pb.dart' as $41;
export 'trackingQuery.pb.dart';
@$pb.GrpcServiceName('api.TrackingQuery')
class TrackingQueryClient extends $grpc.Client {
static final _$getByIds = $grpc.ClientMethod<$41.TrackingByIdQuery, $41.TrackingByIdResult>(
'/api.TrackingQuery/GetByIds',
($41.TrackingByIdQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $41.TrackingByIdResult.fromBuffer(value));
static final _$countLines = $grpc.ClientMethod<$29.CountLinesQuery, $29.CountLinesResult>(
'/api.TrackingQuery/CountLines',
($29.CountLinesQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $29.CountLinesResult.fromBuffer(value));
TrackingQueryClient($grpc.ClientChannel channel,
{$grpc.CallOptions? options,
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
: super(channel, options: options,
interceptors: interceptors);
$grpc.ResponseFuture<$41.TrackingByIdResult> getByIds($41.TrackingByIdQuery request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$getByIds, request, options: options);
}
$grpc.ResponseFuture<$29.CountLinesResult> countLines($29.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<$41.TrackingByIdQuery, $41.TrackingByIdResult>(
'GetByIds',
getByIds_Pre,
false,
false,
($core.List<$core.int> value) => $41.TrackingByIdQuery.fromBuffer(value),
($41.TrackingByIdResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$29.CountLinesQuery, $29.CountLinesResult>(
'CountLines',
countLines_Pre,
false,
false,
($core.List<$core.int> value) => $29.CountLinesQuery.fromBuffer(value),
($29.CountLinesResult value) => value.writeToBuffer()));
}
$async.Future<$41.TrackingByIdResult> getByIds_Pre($grpc.ServiceCall $call, $async.Future<$41.TrackingByIdQuery> $request) async {
return getByIds($call, await $request);
}
$async.Future<$29.CountLinesResult> countLines_Pre($grpc.ServiceCall $call, $async.Future<$29.CountLinesQuery> $request) async {
return countLines($call, await $request);
}
$async.Future<$41.TrackingByIdResult> getByIds($grpc.ServiceCall call, $41.TrackingByIdQuery request);
$async.Future<$29.CountLinesResult> countLines($grpc.ServiceCall call, $29.CountLinesQuery request);
}