You've already forked dart-core-sdk
90 lines
3.2 KiB
Dart
90 lines
3.2 KiB
Dart
// This is a generated file - do not edit.
|
|
//
|
|
// Generated from 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 $1;
|
|
import 'trackingQuery.pb.dart' as $0;
|
|
|
|
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 = [
|
|
'',
|
|
];
|
|
|
|
TrackingQueryClient(super.channel, {super.options, super.interceptors});
|
|
|
|
$grpc.ResponseFuture<$0.TrackingByIdResult> getByIds($0.TrackingByIdQuery request, {$grpc.CallOptions? options,}) {
|
|
return $createUnaryCall(_$getByIds, request, options: options);
|
|
}
|
|
|
|
$grpc.ResponseFuture<$1.CountLinesResult> countLines($1.CountLinesQuery request, {$grpc.CallOptions? options,}) {
|
|
return $createUnaryCall(_$countLines, request, options: options);
|
|
}
|
|
|
|
// method descriptors
|
|
|
|
static final _$getByIds = $grpc.ClientMethod<$0.TrackingByIdQuery, $0.TrackingByIdResult>(
|
|
'/api.TrackingQuery/GetByIds',
|
|
($0.TrackingByIdQuery value) => value.writeToBuffer(),
|
|
$0.TrackingByIdResult.fromBuffer);
|
|
static final _$countLines = $grpc.ClientMethod<$1.CountLinesQuery, $1.CountLinesResult>(
|
|
'/api.TrackingQuery/CountLines',
|
|
($1.CountLinesQuery value) => value.writeToBuffer(),
|
|
$1.CountLinesResult.fromBuffer);
|
|
}
|
|
|
|
@$pb.GrpcServiceName('api.TrackingQuery')
|
|
abstract class TrackingQueryServiceBase extends $grpc.Service {
|
|
$core.String get $name => 'api.TrackingQuery';
|
|
|
|
TrackingQueryServiceBase() {
|
|
$addMethod($grpc.ServiceMethod<$0.TrackingByIdQuery, $0.TrackingByIdResult>(
|
|
'GetByIds',
|
|
getByIds_Pre,
|
|
false,
|
|
false,
|
|
($core.List<$core.int> value) => $0.TrackingByIdQuery.fromBuffer(value),
|
|
($0.TrackingByIdResult value) => value.writeToBuffer()));
|
|
$addMethod($grpc.ServiceMethod<$1.CountLinesQuery, $1.CountLinesResult>(
|
|
'CountLines',
|
|
countLines_Pre,
|
|
false,
|
|
false,
|
|
($core.List<$core.int> value) => $1.CountLinesQuery.fromBuffer(value),
|
|
($1.CountLinesResult value) => value.writeToBuffer()));
|
|
}
|
|
|
|
$async.Future<$0.TrackingByIdResult> getByIds_Pre($grpc.ServiceCall $call, $async.Future<$0.TrackingByIdQuery> $request) async {
|
|
return getByIds($call, await $request);
|
|
}
|
|
|
|
$async.Future<$0.TrackingByIdResult> getByIds($grpc.ServiceCall call, $0.TrackingByIdQuery request);
|
|
|
|
$async.Future<$1.CountLinesResult> countLines_Pre($grpc.ServiceCall $call, $async.Future<$1.CountLinesQuery> $request) async {
|
|
return countLines($call, await $request);
|
|
}
|
|
|
|
$async.Future<$1.CountLinesResult> countLines($grpc.ServiceCall call, $1.CountLinesQuery request);
|
|
|
|
}
|