Files
dart-core-sdk/lib/driver.pbgrpc.dart
2026-05-27 14:06:56 +00:00

68 lines
2.5 KiB
Dart

// This is a generated file - do not edit.
//
// Generated from driver.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 'driver.pb.dart' as $0;
export 'driver.pb.dart';
@$pb.GrpcServiceName('api.DriverService')
class DriverServiceClient 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 = [
'',
];
DriverServiceClient(super.channel, {super.options, super.interceptors});
$grpc.ResponseFuture<$0.GetAppointmentDriverDataResponse> getAppointmentDriverData($0.GetAppointmentDriverDataRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$getAppointmentDriverData, request, options: options);
}
// method descriptors
static final _$getAppointmentDriverData = $grpc.ClientMethod<$0.GetAppointmentDriverDataRequest, $0.GetAppointmentDriverDataResponse>(
'/api.DriverService/GetAppointmentDriverData',
($0.GetAppointmentDriverDataRequest value) => value.writeToBuffer(),
$0.GetAppointmentDriverDataResponse.fromBuffer);
}
@$pb.GrpcServiceName('api.DriverService')
abstract class DriverServiceBase extends $grpc.Service {
$core.String get $name => 'api.DriverService';
DriverServiceBase() {
$addMethod($grpc.ServiceMethod<$0.GetAppointmentDriverDataRequest, $0.GetAppointmentDriverDataResponse>(
'GetAppointmentDriverData',
getAppointmentDriverData_Pre,
false,
false,
($core.List<$core.int> value) => $0.GetAppointmentDriverDataRequest.fromBuffer(value),
($0.GetAppointmentDriverDataResponse value) => value.writeToBuffer()));
}
$async.Future<$0.GetAppointmentDriverDataResponse> getAppointmentDriverData_Pre($grpc.ServiceCall $call, $async.Future<$0.GetAppointmentDriverDataRequest> $request) async {
return getAppointmentDriverData($call, await $request);
}
$async.Future<$0.GetAppointmentDriverDataResponse> getAppointmentDriverData($grpc.ServiceCall call, $0.GetAppointmentDriverDataRequest request);
}