Files
dart-core-sdk/lib/trackingQuery.pbgrpc.dart
2025-06-02 13:25:01 +00:00

86 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
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
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 $3;
import 'trackingQuery.pb.dart' as $61;
export 'trackingQuery.pb.dart';
@$pb.GrpcServiceName('api.TrackingQuery')
class TrackingQueryClient extends $grpc.Client {
/// The hostname for this service.
static const $core.String defaultHost = '';
/// OAuth scopes needed for the client.
static const $core.List<$core.String> oauthScopes = [
'',
];
static final _$getByIds = $grpc.ClientMethod<$61.TrackingByIdQuery, $61.TrackingByIdResult>(
'/api.TrackingQuery/GetByIds',
($61.TrackingByIdQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $61.TrackingByIdResult.fromBuffer(value));
static final _$countLines = $grpc.ClientMethod<$3.CountLinesQuery, $3.CountLinesResult>(
'/api.TrackingQuery/CountLines',
($3.CountLinesQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $3.CountLinesResult.fromBuffer(value));
TrackingQueryClient(super.channel, {super.options, super.interceptors});
$grpc.ResponseFuture<$61.TrackingByIdResult> getByIds($61.TrackingByIdQuery request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$getByIds, request, options: options);
}
$grpc.ResponseFuture<$3.CountLinesResult> countLines($3.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<$61.TrackingByIdQuery, $61.TrackingByIdResult>(
'GetByIds',
getByIds_Pre,
false,
false,
($core.List<$core.int> value) => $61.TrackingByIdQuery.fromBuffer(value),
($61.TrackingByIdResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$3.CountLinesQuery, $3.CountLinesResult>(
'CountLines',
countLines_Pre,
false,
false,
($core.List<$core.int> value) => $3.CountLinesQuery.fromBuffer(value),
($3.CountLinesResult value) => value.writeToBuffer()));
}
$async.Future<$61.TrackingByIdResult> getByIds_Pre($grpc.ServiceCall $call, $async.Future<$61.TrackingByIdQuery> $request) async {
return getByIds($call, await $request);
}
$async.Future<$3.CountLinesResult> countLines_Pre($grpc.ServiceCall $call, $async.Future<$3.CountLinesQuery> $request) async {
return countLines($call, await $request);
}
$async.Future<$61.TrackingByIdResult> getByIds($grpc.ServiceCall call, $61.TrackingByIdQuery request);
$async.Future<$3.CountLinesResult> countLines($grpc.ServiceCall call, $3.CountLinesQuery request);
}