@@ -739,6 +739,26 @@ def __init__(self, channel):
739
739
request_serializer = kwprocess__pb2 .EMMat002Request .SerializeToString ,
740
740
response_deserializer = kwprocess__pb2 .EMMat002Reply .FromString ,
741
741
)
742
+ self .CreateEMMat004 = channel .unary_unary (
743
+ '/kwgrpc.kwC2S/CreateEMMat004' ,
744
+ request_serializer = kwprocess__pb2 .EMMat004Request .SerializeToString ,
745
+ response_deserializer = kwprocess__pb2 .EMMat004Reply .FromString ,
746
+ )
747
+ self .CreateEMIsopotential = channel .unary_unary (
748
+ '/kwgrpc.kwC2S/CreateEMIsopotential' ,
749
+ request_serializer = kwprocess__pb2 .EMIsopotentialRequest .SerializeToString ,
750
+ response_deserializer = kwprocess__pb2 .EMIsopotentialReply .FromString ,
751
+ )
752
+ self .CreateEMIsopotentialConnect = channel .unary_unary (
753
+ '/kwgrpc.kwC2S/CreateEMIsopotentialConnect' ,
754
+ request_serializer = kwprocess__pb2 .EMIsopotentialConnectRequest .SerializeToString ,
755
+ response_deserializer = kwprocess__pb2 .EMIsopotentialConnectReply .FromString ,
756
+ )
757
+ self .CreateEMIsopotentialRogo = channel .unary_unary (
758
+ '/kwgrpc.kwC2S/CreateEMIsopotentialRogo' ,
759
+ request_serializer = kwprocess__pb2 .EMIsopotentialRogoRequest .SerializeToString ,
760
+ response_deserializer = kwprocess__pb2 .EMIsopotentialRogoReply .FromString ,
761
+ )
742
762
self .CreateEMSolverBem = channel .unary_unary (
743
763
'/kwgrpc.kwC2S/CreateEMSolverBem' ,
744
764
request_serializer = kwprocess__pb2 .EMSolverBemRequest .SerializeToString ,
@@ -1688,6 +1708,30 @@ def CreateEMMat002(self, request, context):
1688
1708
context .set_details ('Method not implemented!' )
1689
1709
raise NotImplementedError ('Method not implemented!' )
1690
1710
1711
+ def CreateEMMat004 (self , request , context ):
1712
+ """Missing associated documentation comment in .proto file."""
1713
+ context .set_code (grpc .StatusCode .UNIMPLEMENTED )
1714
+ context .set_details ('Method not implemented!' )
1715
+ raise NotImplementedError ('Method not implemented!' )
1716
+
1717
+ def CreateEMIsopotential (self , request , context ):
1718
+ """Missing associated documentation comment in .proto file."""
1719
+ context .set_code (grpc .StatusCode .UNIMPLEMENTED )
1720
+ context .set_details ('Method not implemented!' )
1721
+ raise NotImplementedError ('Method not implemented!' )
1722
+
1723
+ def CreateEMIsopotentialConnect (self , request , context ):
1724
+ """Missing associated documentation comment in .proto file."""
1725
+ context .set_code (grpc .StatusCode .UNIMPLEMENTED )
1726
+ context .set_details ('Method not implemented!' )
1727
+ raise NotImplementedError ('Method not implemented!' )
1728
+
1729
+ def CreateEMIsopotentialRogo (self , request , context ):
1730
+ """Missing associated documentation comment in .proto file."""
1731
+ context .set_code (grpc .StatusCode .UNIMPLEMENTED )
1732
+ context .set_details ('Method not implemented!' )
1733
+ raise NotImplementedError ('Method not implemented!' )
1734
+
1691
1735
def CreateEMSolverBem (self , request , context ):
1692
1736
"""Missing associated documentation comment in .proto file."""
1693
1737
context .set_code (grpc .StatusCode .UNIMPLEMENTED )
@@ -2483,6 +2527,26 @@ def add_kwC2SServicer_to_server(servicer, server):
2483
2527
request_deserializer = kwprocess__pb2 .EMMat002Request .FromString ,
2484
2528
response_serializer = kwprocess__pb2 .EMMat002Reply .SerializeToString ,
2485
2529
),
2530
+ 'CreateEMMat004' : grpc .unary_unary_rpc_method_handler (
2531
+ servicer .CreateEMMat004 ,
2532
+ request_deserializer = kwprocess__pb2 .EMMat004Request .FromString ,
2533
+ response_serializer = kwprocess__pb2 .EMMat004Reply .SerializeToString ,
2534
+ ),
2535
+ 'CreateEMIsopotential' : grpc .unary_unary_rpc_method_handler (
2536
+ servicer .CreateEMIsopotential ,
2537
+ request_deserializer = kwprocess__pb2 .EMIsopotentialRequest .FromString ,
2538
+ response_serializer = kwprocess__pb2 .EMIsopotentialReply .SerializeToString ,
2539
+ ),
2540
+ 'CreateEMIsopotentialConnect' : grpc .unary_unary_rpc_method_handler (
2541
+ servicer .CreateEMIsopotentialConnect ,
2542
+ request_deserializer = kwprocess__pb2 .EMIsopotentialConnectRequest .FromString ,
2543
+ response_serializer = kwprocess__pb2 .EMIsopotentialConnectReply .SerializeToString ,
2544
+ ),
2545
+ 'CreateEMIsopotentialRogo' : grpc .unary_unary_rpc_method_handler (
2546
+ servicer .CreateEMIsopotentialRogo ,
2547
+ request_deserializer = kwprocess__pb2 .EMIsopotentialRogoRequest .FromString ,
2548
+ response_serializer = kwprocess__pb2 .EMIsopotentialRogoReply .SerializeToString ,
2549
+ ),
2486
2550
'CreateEMSolverBem' : grpc .unary_unary_rpc_method_handler (
2487
2551
servicer .CreateEMSolverBem ,
2488
2552
request_deserializer = kwprocess__pb2 .EMSolverBemRequest .FromString ,
@@ -5013,6 +5077,74 @@ def CreateEMMat002(request,
5013
5077
options , channel_credentials ,
5014
5078
insecure , call_credentials , compression , wait_for_ready , timeout , metadata )
5015
5079
5080
+ @staticmethod
5081
+ def CreateEMMat004 (request ,
5082
+ target ,
5083
+ options = (),
5084
+ channel_credentials = None ,
5085
+ call_credentials = None ,
5086
+ insecure = False ,
5087
+ compression = None ,
5088
+ wait_for_ready = None ,
5089
+ timeout = None ,
5090
+ metadata = None ):
5091
+ return grpc .experimental .unary_unary (request , target , '/kwgrpc.kwC2S/CreateEMMat004' ,
5092
+ kwprocess__pb2 .EMMat004Request .SerializeToString ,
5093
+ kwprocess__pb2 .EMMat004Reply .FromString ,
5094
+ options , channel_credentials ,
5095
+ insecure , call_credentials , compression , wait_for_ready , timeout , metadata )
5096
+
5097
+ @staticmethod
5098
+ def CreateEMIsopotential (request ,
5099
+ target ,
5100
+ options = (),
5101
+ channel_credentials = None ,
5102
+ call_credentials = None ,
5103
+ insecure = False ,
5104
+ compression = None ,
5105
+ wait_for_ready = None ,
5106
+ timeout = None ,
5107
+ metadata = None ):
5108
+ return grpc .experimental .unary_unary (request , target , '/kwgrpc.kwC2S/CreateEMIsopotential' ,
5109
+ kwprocess__pb2 .EMIsopotentialRequest .SerializeToString ,
5110
+ kwprocess__pb2 .EMIsopotentialReply .FromString ,
5111
+ options , channel_credentials ,
5112
+ insecure , call_credentials , compression , wait_for_ready , timeout , metadata )
5113
+
5114
+ @staticmethod
5115
+ def CreateEMIsopotentialConnect (request ,
5116
+ target ,
5117
+ options = (),
5118
+ channel_credentials = None ,
5119
+ call_credentials = None ,
5120
+ insecure = False ,
5121
+ compression = None ,
5122
+ wait_for_ready = None ,
5123
+ timeout = None ,
5124
+ metadata = None ):
5125
+ return grpc .experimental .unary_unary (request , target , '/kwgrpc.kwC2S/CreateEMIsopotentialConnect' ,
5126
+ kwprocess__pb2 .EMIsopotentialConnectRequest .SerializeToString ,
5127
+ kwprocess__pb2 .EMIsopotentialConnectReply .FromString ,
5128
+ options , channel_credentials ,
5129
+ insecure , call_credentials , compression , wait_for_ready , timeout , metadata )
5130
+
5131
+ @staticmethod
5132
+ def CreateEMIsopotentialRogo (request ,
5133
+ target ,
5134
+ options = (),
5135
+ channel_credentials = None ,
5136
+ call_credentials = None ,
5137
+ insecure = False ,
5138
+ compression = None ,
5139
+ wait_for_ready = None ,
5140
+ timeout = None ,
5141
+ metadata = None ):
5142
+ return grpc .experimental .unary_unary (request , target , '/kwgrpc.kwC2S/CreateEMIsopotentialRogo' ,
5143
+ kwprocess__pb2 .EMIsopotentialRogoRequest .SerializeToString ,
5144
+ kwprocess__pb2 .EMIsopotentialRogoReply .FromString ,
5145
+ options , channel_credentials ,
5146
+ insecure , call_credentials , compression , wait_for_ready , timeout , metadata )
5147
+
5016
5148
@staticmethod
5017
5149
def CreateEMSolverBem (request ,
5018
5150
target ,
0 commit comments