@@ -566,7 +566,9 @@ extension Grpc_Testing_TestService.ClientProtocol {
566
566
public func emptyCall< R> (
567
567
request: ClientRequest . Single < Grpc_Testing_Empty > ,
568
568
options: CallOptions = . defaults,
569
- _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_Empty > ) async throws -> R
569
+ _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_Empty > ) async throws -> R = {
570
+ try $0. message
571
+ }
570
572
) async throws -> R where R: Sendable {
571
573
try await self . emptyCall (
572
574
request: request,
@@ -580,7 +582,9 @@ extension Grpc_Testing_TestService.ClientProtocol {
580
582
public func unaryCall< R> (
581
583
request: ClientRequest . Single < Grpc_Testing_SimpleRequest > ,
582
584
options: CallOptions = . defaults,
583
- _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_SimpleResponse > ) async throws -> R
585
+ _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_SimpleResponse > ) async throws -> R = {
586
+ try $0. message
587
+ }
584
588
) async throws -> R where R: Sendable {
585
589
try await self . unaryCall (
586
590
request: request,
@@ -594,7 +598,9 @@ extension Grpc_Testing_TestService.ClientProtocol {
594
598
public func cacheableUnaryCall< R> (
595
599
request: ClientRequest . Single < Grpc_Testing_SimpleRequest > ,
596
600
options: CallOptions = . defaults,
597
- _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_SimpleResponse > ) async throws -> R
601
+ _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_SimpleResponse > ) async throws -> R = {
602
+ try $0. message
603
+ }
598
604
) async throws -> R where R: Sendable {
599
605
try await self . cacheableUnaryCall (
600
606
request: request,
@@ -622,7 +628,9 @@ extension Grpc_Testing_TestService.ClientProtocol {
622
628
public func streamingInputCall< R> (
623
629
request: ClientRequest . Stream < Grpc_Testing_StreamingInputCallRequest > ,
624
630
options: CallOptions = . defaults,
625
- _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_StreamingInputCallResponse > ) async throws -> R
631
+ _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_StreamingInputCallResponse > ) async throws -> R = {
632
+ try $0. message
633
+ }
626
634
) async throws -> R where R: Sendable {
627
635
try await self . streamingInputCall (
628
636
request: request,
@@ -664,7 +672,9 @@ extension Grpc_Testing_TestService.ClientProtocol {
664
672
public func unimplementedCall< R> (
665
673
request: ClientRequest . Single < Grpc_Testing_Empty > ,
666
674
options: CallOptions = . defaults,
667
- _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_Empty > ) async throws -> R
675
+ _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_Empty > ) async throws -> R = {
676
+ try $0. message
677
+ }
668
678
) async throws -> R where R: Sendable {
669
679
try await self . unimplementedCall (
670
680
request: request,
@@ -692,7 +702,9 @@ public struct Grpc_Testing_TestServiceClient: Grpc_Testing_TestService.ClientPro
692
702
serializer: some MessageSerializer < Grpc_Testing_Empty > ,
693
703
deserializer: some MessageDeserializer < Grpc_Testing_Empty > ,
694
704
options: CallOptions = . defaults,
695
- _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_Empty > ) async throws -> R
705
+ _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_Empty > ) async throws -> R = {
706
+ try $0. message
707
+ }
696
708
) async throws -> R where R: Sendable {
697
709
try await self . client. unary (
698
710
request: request,
@@ -710,7 +722,9 @@ public struct Grpc_Testing_TestServiceClient: Grpc_Testing_TestService.ClientPro
710
722
serializer: some MessageSerializer < Grpc_Testing_SimpleRequest > ,
711
723
deserializer: some MessageDeserializer < Grpc_Testing_SimpleResponse > ,
712
724
options: CallOptions = . defaults,
713
- _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_SimpleResponse > ) async throws -> R
725
+ _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_SimpleResponse > ) async throws -> R = {
726
+ try $0. message
727
+ }
714
728
) async throws -> R where R: Sendable {
715
729
try await self . client. unary (
716
730
request: request,
@@ -730,7 +744,9 @@ public struct Grpc_Testing_TestServiceClient: Grpc_Testing_TestService.ClientPro
730
744
serializer: some MessageSerializer < Grpc_Testing_SimpleRequest > ,
731
745
deserializer: some MessageDeserializer < Grpc_Testing_SimpleResponse > ,
732
746
options: CallOptions = . defaults,
733
- _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_SimpleResponse > ) async throws -> R
747
+ _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_SimpleResponse > ) async throws -> R = {
748
+ try $0. message
749
+ }
734
750
) async throws -> R where R: Sendable {
735
751
try await self . client. unary (
736
752
request: request,
@@ -768,7 +784,9 @@ public struct Grpc_Testing_TestServiceClient: Grpc_Testing_TestService.ClientPro
768
784
serializer: some MessageSerializer < Grpc_Testing_StreamingInputCallRequest > ,
769
785
deserializer: some MessageDeserializer < Grpc_Testing_StreamingInputCallResponse > ,
770
786
options: CallOptions = . defaults,
771
- _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_StreamingInputCallResponse > ) async throws -> R
787
+ _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_StreamingInputCallResponse > ) async throws -> R = {
788
+ try $0. message
789
+ }
772
790
) async throws -> R where R: Sendable {
773
791
try await self . client. clientStreaming (
774
792
request: request,
@@ -828,7 +846,9 @@ public struct Grpc_Testing_TestServiceClient: Grpc_Testing_TestService.ClientPro
828
846
serializer: some MessageSerializer < Grpc_Testing_Empty > ,
829
847
deserializer: some MessageDeserializer < Grpc_Testing_Empty > ,
830
848
options: CallOptions = . defaults,
831
- _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_Empty > ) async throws -> R
849
+ _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_Empty > ) async throws -> R = {
850
+ try $0. message
851
+ }
832
852
) async throws -> R where R: Sendable {
833
853
try await self . client. unary (
834
854
request: request,
@@ -860,7 +880,9 @@ extension Grpc_Testing_UnimplementedService.ClientProtocol {
860
880
public func unimplementedCall< R> (
861
881
request: ClientRequest . Single < Grpc_Testing_Empty > ,
862
882
options: CallOptions = . defaults,
863
- _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_Empty > ) async throws -> R
883
+ _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_Empty > ) async throws -> R = {
884
+ try $0. message
885
+ }
864
886
) async throws -> R where R: Sendable {
865
887
try await self . unimplementedCall (
866
888
request: request,
@@ -888,7 +910,9 @@ public struct Grpc_Testing_UnimplementedServiceClient: Grpc_Testing_Unimplemente
888
910
serializer: some MessageSerializer < Grpc_Testing_Empty > ,
889
911
deserializer: some MessageDeserializer < Grpc_Testing_Empty > ,
890
912
options: CallOptions = . defaults,
891
- _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_Empty > ) async throws -> R
913
+ _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_Empty > ) async throws -> R = {
914
+ try $0. message
915
+ }
892
916
) async throws -> R where R: Sendable {
893
917
try await self . client. unary (
894
918
request: request,
@@ -926,7 +950,9 @@ extension Grpc_Testing_ReconnectService.ClientProtocol {
926
950
public func start< R> (
927
951
request: ClientRequest . Single < Grpc_Testing_ReconnectParams > ,
928
952
options: CallOptions = . defaults,
929
- _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_Empty > ) async throws -> R
953
+ _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_Empty > ) async throws -> R = {
954
+ try $0. message
955
+ }
930
956
) async throws -> R where R: Sendable {
931
957
try await self . start (
932
958
request: request,
@@ -940,7 +966,9 @@ extension Grpc_Testing_ReconnectService.ClientProtocol {
940
966
public func stop< R> (
941
967
request: ClientRequest . Single < Grpc_Testing_Empty > ,
942
968
options: CallOptions = . defaults,
943
- _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_ReconnectInfo > ) async throws -> R
969
+ _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_ReconnectInfo > ) async throws -> R = {
970
+ try $0. message
971
+ }
944
972
) async throws -> R where R: Sendable {
945
973
try await self . stop (
946
974
request: request,
@@ -966,7 +994,9 @@ public struct Grpc_Testing_ReconnectServiceClient: Grpc_Testing_ReconnectService
966
994
serializer: some MessageSerializer < Grpc_Testing_ReconnectParams > ,
967
995
deserializer: some MessageDeserializer < Grpc_Testing_Empty > ,
968
996
options: CallOptions = . defaults,
969
- _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_Empty > ) async throws -> R
997
+ _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_Empty > ) async throws -> R = {
998
+ try $0. message
999
+ }
970
1000
) async throws -> R where R: Sendable {
971
1001
try await self . client. unary (
972
1002
request: request,
@@ -983,7 +1013,9 @@ public struct Grpc_Testing_ReconnectServiceClient: Grpc_Testing_ReconnectService
983
1013
serializer: some MessageSerializer < Grpc_Testing_Empty > ,
984
1014
deserializer: some MessageDeserializer < Grpc_Testing_ReconnectInfo > ,
985
1015
options: CallOptions = . defaults,
986
- _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_ReconnectInfo > ) async throws -> R
1016
+ _ body: @Sendable @escaping ( ClientResponse . Single < Grpc_Testing_ReconnectInfo > ) async throws -> R = {
1017
+ try $0. message
1018
+ }
987
1019
) async throws -> R where R: Sendable {
988
1020
try await self . client. unary (
989
1021
request: request,
0 commit comments