flwr-nightly 1.26.0.dev20260130__py3-none-any.whl → 1.26.0.dev20260202__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- flwr/cli/run/run.py +19 -2
- flwr/cli/utils.py +2 -1
- flwr/proto/clientappio_pb2.py +2 -2
- flwr/proto/clientappio_pb2_grpc.py +104 -88
- flwr/proto/clientappio_pb2_grpc.pyi +140 -80
- flwr/proto/serverappio_pb2.py +1 -1
- flwr/proto/serverappio_pb2_grpc.py +177 -157
- flwr/proto/serverappio_pb2_grpc.pyi +222 -147
- flwr/proto/simulationio_pb2.py +1 -1
- flwr/proto/simulationio_pb2_grpc.py +80 -64
- flwr/proto/simulationio_pb2_grpc.pyi +112 -52
- flwr/supernode/runtime/run_clientapp.py +12 -12
- flwr/supernode/servicer/clientappio/clientappio_servicer.py +4 -4
- {flwr_nightly-1.26.0.dev20260130.dist-info → flwr_nightly-1.26.0.dev20260202.dist-info}/METADATA +5 -5
- {flwr_nightly-1.26.0.dev20260130.dist-info → flwr_nightly-1.26.0.dev20260202.dist-info}/RECORD +17 -17
- {flwr_nightly-1.26.0.dev20260130.dist-info → flwr_nightly-1.26.0.dev20260202.dist-info}/WHEEL +0 -0
- {flwr_nightly-1.26.0.dev20260130.dist-info → flwr_nightly-1.26.0.dev20260202.dist-info}/entry_points.txt +0 -0
|
@@ -50,30 +50,15 @@ class ServerAppIoStub(object):
|
|
|
50
50
|
request_serializer=flwr_dot_proto_dot_appio__pb2.RequestTokenRequest.SerializeToString,
|
|
51
51
|
response_deserializer=flwr_dot_proto_dot_appio__pb2.RequestTokenResponse.FromString,
|
|
52
52
|
_registered_method=True)
|
|
53
|
-
self.GetNodes = channel.unary_unary(
|
|
54
|
-
'/flwr.proto.ServerAppIo/GetNodes',
|
|
55
|
-
request_serializer=flwr_dot_proto_dot_serverappio__pb2.GetNodesRequest.SerializeToString,
|
|
56
|
-
response_deserializer=flwr_dot_proto_dot_serverappio__pb2.GetNodesResponse.FromString,
|
|
57
|
-
_registered_method=True)
|
|
58
|
-
self.PushMessages = channel.unary_unary(
|
|
59
|
-
'/flwr.proto.ServerAppIo/PushMessages',
|
|
60
|
-
request_serializer=flwr_dot_proto_dot_appio__pb2.PushAppMessagesRequest.SerializeToString,
|
|
61
|
-
response_deserializer=flwr_dot_proto_dot_appio__pb2.PushAppMessagesResponse.FromString,
|
|
62
|
-
_registered_method=True)
|
|
63
|
-
self.PullMessages = channel.unary_unary(
|
|
64
|
-
'/flwr.proto.ServerAppIo/PullMessages',
|
|
65
|
-
request_serializer=flwr_dot_proto_dot_appio__pb2.PullAppMessagesRequest.SerializeToString,
|
|
66
|
-
response_deserializer=flwr_dot_proto_dot_appio__pb2.PullAppMessagesResponse.FromString,
|
|
67
|
-
_registered_method=True)
|
|
68
53
|
self.GetRun = channel.unary_unary(
|
|
69
54
|
'/flwr.proto.ServerAppIo/GetRun',
|
|
70
55
|
request_serializer=flwr_dot_proto_dot_run__pb2.GetRunRequest.SerializeToString,
|
|
71
56
|
response_deserializer=flwr_dot_proto_dot_run__pb2.GetRunResponse.FromString,
|
|
72
57
|
_registered_method=True)
|
|
73
|
-
self.
|
|
74
|
-
'/flwr.proto.ServerAppIo/
|
|
75
|
-
request_serializer=
|
|
76
|
-
response_deserializer=
|
|
58
|
+
self.SendAppHeartbeat = channel.unary_unary(
|
|
59
|
+
'/flwr.proto.ServerAppIo/SendAppHeartbeat',
|
|
60
|
+
request_serializer=flwr_dot_proto_dot_heartbeat__pb2.SendAppHeartbeatRequest.SerializeToString,
|
|
61
|
+
response_deserializer=flwr_dot_proto_dot_heartbeat__pb2.SendAppHeartbeatResponse.FromString,
|
|
77
62
|
_registered_method=True)
|
|
78
63
|
self.PullAppInputs = channel.unary_unary(
|
|
79
64
|
'/flwr.proto.ServerAppIo/PullAppInputs',
|
|
@@ -85,26 +70,6 @@ class ServerAppIoStub(object):
|
|
|
85
70
|
request_serializer=flwr_dot_proto_dot_appio__pb2.PushAppOutputsRequest.SerializeToString,
|
|
86
71
|
response_deserializer=flwr_dot_proto_dot_appio__pb2.PushAppOutputsResponse.FromString,
|
|
87
72
|
_registered_method=True)
|
|
88
|
-
self.UpdateRunStatus = channel.unary_unary(
|
|
89
|
-
'/flwr.proto.ServerAppIo/UpdateRunStatus',
|
|
90
|
-
request_serializer=flwr_dot_proto_dot_run__pb2.UpdateRunStatusRequest.SerializeToString,
|
|
91
|
-
response_deserializer=flwr_dot_proto_dot_run__pb2.UpdateRunStatusResponse.FromString,
|
|
92
|
-
_registered_method=True)
|
|
93
|
-
self.GetRunStatus = channel.unary_unary(
|
|
94
|
-
'/flwr.proto.ServerAppIo/GetRunStatus',
|
|
95
|
-
request_serializer=flwr_dot_proto_dot_run__pb2.GetRunStatusRequest.SerializeToString,
|
|
96
|
-
response_deserializer=flwr_dot_proto_dot_run__pb2.GetRunStatusResponse.FromString,
|
|
97
|
-
_registered_method=True)
|
|
98
|
-
self.PushLogs = channel.unary_unary(
|
|
99
|
-
'/flwr.proto.ServerAppIo/PushLogs',
|
|
100
|
-
request_serializer=flwr_dot_proto_dot_log__pb2.PushLogsRequest.SerializeToString,
|
|
101
|
-
response_deserializer=flwr_dot_proto_dot_log__pb2.PushLogsResponse.FromString,
|
|
102
|
-
_registered_method=True)
|
|
103
|
-
self.SendAppHeartbeat = channel.unary_unary(
|
|
104
|
-
'/flwr.proto.ServerAppIo/SendAppHeartbeat',
|
|
105
|
-
request_serializer=flwr_dot_proto_dot_heartbeat__pb2.SendAppHeartbeatRequest.SerializeToString,
|
|
106
|
-
response_deserializer=flwr_dot_proto_dot_heartbeat__pb2.SendAppHeartbeatResponse.FromString,
|
|
107
|
-
_registered_method=True)
|
|
108
73
|
self.PushObject = channel.unary_unary(
|
|
109
74
|
'/flwr.proto.ServerAppIo/PushObject',
|
|
110
75
|
request_serializer=flwr_dot_proto_dot_message__pb2.PushObjectRequest.SerializeToString,
|
|
@@ -120,13 +85,52 @@ class ServerAppIoStub(object):
|
|
|
120
85
|
request_serializer=flwr_dot_proto_dot_message__pb2.ConfirmMessageReceivedRequest.SerializeToString,
|
|
121
86
|
response_deserializer=flwr_dot_proto_dot_message__pb2.ConfirmMessageReceivedResponse.FromString,
|
|
122
87
|
_registered_method=True)
|
|
88
|
+
self.GetRunStatus = channel.unary_unary(
|
|
89
|
+
'/flwr.proto.ServerAppIo/GetRunStatus',
|
|
90
|
+
request_serializer=flwr_dot_proto_dot_run__pb2.GetRunStatusRequest.SerializeToString,
|
|
91
|
+
response_deserializer=flwr_dot_proto_dot_run__pb2.GetRunStatusResponse.FromString,
|
|
92
|
+
_registered_method=True)
|
|
93
|
+
self.UpdateRunStatus = channel.unary_unary(
|
|
94
|
+
'/flwr.proto.ServerAppIo/UpdateRunStatus',
|
|
95
|
+
request_serializer=flwr_dot_proto_dot_run__pb2.UpdateRunStatusRequest.SerializeToString,
|
|
96
|
+
response_deserializer=flwr_dot_proto_dot_run__pb2.UpdateRunStatusResponse.FromString,
|
|
97
|
+
_registered_method=True)
|
|
98
|
+
self.PushLogs = channel.unary_unary(
|
|
99
|
+
'/flwr.proto.ServerAppIo/PushLogs',
|
|
100
|
+
request_serializer=flwr_dot_proto_dot_log__pb2.PushLogsRequest.SerializeToString,
|
|
101
|
+
response_deserializer=flwr_dot_proto_dot_log__pb2.PushLogsResponse.FromString,
|
|
102
|
+
_registered_method=True)
|
|
103
|
+
self.PushMessages = channel.unary_unary(
|
|
104
|
+
'/flwr.proto.ServerAppIo/PushMessages',
|
|
105
|
+
request_serializer=flwr_dot_proto_dot_appio__pb2.PushAppMessagesRequest.SerializeToString,
|
|
106
|
+
response_deserializer=flwr_dot_proto_dot_appio__pb2.PushAppMessagesResponse.FromString,
|
|
107
|
+
_registered_method=True)
|
|
108
|
+
self.PullMessages = channel.unary_unary(
|
|
109
|
+
'/flwr.proto.ServerAppIo/PullMessages',
|
|
110
|
+
request_serializer=flwr_dot_proto_dot_appio__pb2.PullAppMessagesRequest.SerializeToString,
|
|
111
|
+
response_deserializer=flwr_dot_proto_dot_appio__pb2.PullAppMessagesResponse.FromString,
|
|
112
|
+
_registered_method=True)
|
|
113
|
+
self.GetNodes = channel.unary_unary(
|
|
114
|
+
'/flwr.proto.ServerAppIo/GetNodes',
|
|
115
|
+
request_serializer=flwr_dot_proto_dot_serverappio__pb2.GetNodesRequest.SerializeToString,
|
|
116
|
+
response_deserializer=flwr_dot_proto_dot_serverappio__pb2.GetNodesResponse.FromString,
|
|
117
|
+
_registered_method=True)
|
|
118
|
+
self.GetFab = channel.unary_unary(
|
|
119
|
+
'/flwr.proto.ServerAppIo/GetFab',
|
|
120
|
+
request_serializer=flwr_dot_proto_dot_fab__pb2.GetFabRequest.SerializeToString,
|
|
121
|
+
response_deserializer=flwr_dot_proto_dot_fab__pb2.GetFabResponse.FromString,
|
|
122
|
+
_registered_method=True)
|
|
123
123
|
|
|
124
124
|
|
|
125
125
|
class ServerAppIoServicer(object):
|
|
126
126
|
"""Missing associated documentation comment in .proto file."""
|
|
127
127
|
|
|
128
128
|
def ListAppsToLaunch(self, request, context):
|
|
129
|
-
"""
|
|
129
|
+
"""///////////////////////////////////////////////////////////////////////////
|
|
130
|
+
General *AppIo endpoints for SuperExec processes
|
|
131
|
+
///////////////////////////////////////////////////////////////////////////
|
|
132
|
+
|
|
133
|
+
List runs to launch
|
|
130
134
|
"""
|
|
131
135
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
132
136
|
context.set_details('Method not implemented!')
|
|
@@ -139,64 +143,76 @@ class ServerAppIoServicer(object):
|
|
|
139
143
|
context.set_details('Method not implemented!')
|
|
140
144
|
raise NotImplementedError('Method not implemented!')
|
|
141
145
|
|
|
142
|
-
def
|
|
143
|
-
"""
|
|
146
|
+
def GetRun(self, request, context):
|
|
147
|
+
"""///////////////////////////////////////////////////////////////////////////
|
|
148
|
+
General *AppIo endpoints for App Executor processes
|
|
149
|
+
///////////////////////////////////////////////////////////////////////////
|
|
150
|
+
|
|
151
|
+
Get run details
|
|
144
152
|
"""
|
|
145
153
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
146
154
|
context.set_details('Method not implemented!')
|
|
147
155
|
raise NotImplementedError('Method not implemented!')
|
|
148
156
|
|
|
149
|
-
def
|
|
150
|
-
"""
|
|
157
|
+
def SendAppHeartbeat(self, request, context):
|
|
158
|
+
"""App heartbeat
|
|
151
159
|
"""
|
|
152
160
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
153
161
|
context.set_details('Method not implemented!')
|
|
154
162
|
raise NotImplementedError('Method not implemented!')
|
|
155
163
|
|
|
156
|
-
def
|
|
157
|
-
"""
|
|
164
|
+
def PullAppInputs(self, request, context):
|
|
165
|
+
"""Pull app inputs
|
|
158
166
|
"""
|
|
159
167
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
160
168
|
context.set_details('Method not implemented!')
|
|
161
169
|
raise NotImplementedError('Method not implemented!')
|
|
162
170
|
|
|
163
|
-
def
|
|
164
|
-
"""
|
|
171
|
+
def PushAppOutputs(self, request, context):
|
|
172
|
+
"""Push app outputs
|
|
165
173
|
"""
|
|
166
174
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
167
175
|
context.set_details('Method not implemented!')
|
|
168
176
|
raise NotImplementedError('Method not implemented!')
|
|
169
177
|
|
|
170
|
-
def
|
|
171
|
-
"""
|
|
178
|
+
def PushObject(self, request, context):
|
|
179
|
+
"""///////////////////////////////////////////////////////////////////////////
|
|
180
|
+
Specific endpoints shared by ServerAppIo and ClientAppIo
|
|
181
|
+
///////////////////////////////////////////////////////////////////////////
|
|
182
|
+
|
|
183
|
+
Push Object
|
|
172
184
|
"""
|
|
173
185
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
174
186
|
context.set_details('Method not implemented!')
|
|
175
187
|
raise NotImplementedError('Method not implemented!')
|
|
176
188
|
|
|
177
|
-
def
|
|
178
|
-
"""Pull
|
|
189
|
+
def PullObject(self, request, context):
|
|
190
|
+
"""Pull Object
|
|
179
191
|
"""
|
|
180
192
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
181
193
|
context.set_details('Method not implemented!')
|
|
182
194
|
raise NotImplementedError('Method not implemented!')
|
|
183
195
|
|
|
184
|
-
def
|
|
185
|
-
"""
|
|
196
|
+
def ConfirmMessageReceived(self, request, context):
|
|
197
|
+
"""Confirm Message Received
|
|
186
198
|
"""
|
|
187
199
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
188
200
|
context.set_details('Method not implemented!')
|
|
189
201
|
raise NotImplementedError('Method not implemented!')
|
|
190
202
|
|
|
191
|
-
def
|
|
192
|
-
"""
|
|
203
|
+
def GetRunStatus(self, request, context):
|
|
204
|
+
"""///////////////////////////////////////////////////////////////////////////
|
|
205
|
+
Specific endpoints shared by ServerAppIo and SimulationIo
|
|
206
|
+
///////////////////////////////////////////////////////////////////////////
|
|
207
|
+
|
|
208
|
+
Get the status of a given run
|
|
193
209
|
"""
|
|
194
210
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
195
211
|
context.set_details('Method not implemented!')
|
|
196
212
|
raise NotImplementedError('Method not implemented!')
|
|
197
213
|
|
|
198
|
-
def
|
|
199
|
-
"""
|
|
214
|
+
def UpdateRunStatus(self, request, context):
|
|
215
|
+
"""Update the status of a given run
|
|
200
216
|
"""
|
|
201
217
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
202
218
|
context.set_details('Method not implemented!')
|
|
@@ -209,29 +225,33 @@ class ServerAppIoServicer(object):
|
|
|
209
225
|
context.set_details('Method not implemented!')
|
|
210
226
|
raise NotImplementedError('Method not implemented!')
|
|
211
227
|
|
|
212
|
-
def
|
|
213
|
-
"""
|
|
228
|
+
def PushMessages(self, request, context):
|
|
229
|
+
"""///////////////////////////////////////////////////////////////////////////
|
|
230
|
+
Specific endpoints for ServerAppIo
|
|
231
|
+
///////////////////////////////////////////////////////////////////////////
|
|
232
|
+
|
|
233
|
+
Create one or more messages
|
|
214
234
|
"""
|
|
215
235
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
216
236
|
context.set_details('Method not implemented!')
|
|
217
237
|
raise NotImplementedError('Method not implemented!')
|
|
218
238
|
|
|
219
|
-
def
|
|
220
|
-
"""
|
|
239
|
+
def PullMessages(self, request, context):
|
|
240
|
+
"""Get message results
|
|
221
241
|
"""
|
|
222
242
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
223
243
|
context.set_details('Method not implemented!')
|
|
224
244
|
raise NotImplementedError('Method not implemented!')
|
|
225
245
|
|
|
226
|
-
def
|
|
227
|
-
"""
|
|
246
|
+
def GetNodes(self, request, context):
|
|
247
|
+
"""Return a set of nodes
|
|
228
248
|
"""
|
|
229
249
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
230
250
|
context.set_details('Method not implemented!')
|
|
231
251
|
raise NotImplementedError('Method not implemented!')
|
|
232
252
|
|
|
233
|
-
def
|
|
234
|
-
"""
|
|
253
|
+
def GetFab(self, request, context):
|
|
254
|
+
"""Get FAB
|
|
235
255
|
"""
|
|
236
256
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
237
257
|
context.set_details('Method not implemented!')
|
|
@@ -250,30 +270,15 @@ def add_ServerAppIoServicer_to_server(servicer, server):
|
|
|
250
270
|
request_deserializer=flwr_dot_proto_dot_appio__pb2.RequestTokenRequest.FromString,
|
|
251
271
|
response_serializer=flwr_dot_proto_dot_appio__pb2.RequestTokenResponse.SerializeToString,
|
|
252
272
|
),
|
|
253
|
-
'GetNodes': grpc.unary_unary_rpc_method_handler(
|
|
254
|
-
servicer.GetNodes,
|
|
255
|
-
request_deserializer=flwr_dot_proto_dot_serverappio__pb2.GetNodesRequest.FromString,
|
|
256
|
-
response_serializer=flwr_dot_proto_dot_serverappio__pb2.GetNodesResponse.SerializeToString,
|
|
257
|
-
),
|
|
258
|
-
'PushMessages': grpc.unary_unary_rpc_method_handler(
|
|
259
|
-
servicer.PushMessages,
|
|
260
|
-
request_deserializer=flwr_dot_proto_dot_appio__pb2.PushAppMessagesRequest.FromString,
|
|
261
|
-
response_serializer=flwr_dot_proto_dot_appio__pb2.PushAppMessagesResponse.SerializeToString,
|
|
262
|
-
),
|
|
263
|
-
'PullMessages': grpc.unary_unary_rpc_method_handler(
|
|
264
|
-
servicer.PullMessages,
|
|
265
|
-
request_deserializer=flwr_dot_proto_dot_appio__pb2.PullAppMessagesRequest.FromString,
|
|
266
|
-
response_serializer=flwr_dot_proto_dot_appio__pb2.PullAppMessagesResponse.SerializeToString,
|
|
267
|
-
),
|
|
268
273
|
'GetRun': grpc.unary_unary_rpc_method_handler(
|
|
269
274
|
servicer.GetRun,
|
|
270
275
|
request_deserializer=flwr_dot_proto_dot_run__pb2.GetRunRequest.FromString,
|
|
271
276
|
response_serializer=flwr_dot_proto_dot_run__pb2.GetRunResponse.SerializeToString,
|
|
272
277
|
),
|
|
273
|
-
'
|
|
274
|
-
servicer.
|
|
275
|
-
request_deserializer=
|
|
276
|
-
response_serializer=
|
|
278
|
+
'SendAppHeartbeat': grpc.unary_unary_rpc_method_handler(
|
|
279
|
+
servicer.SendAppHeartbeat,
|
|
280
|
+
request_deserializer=flwr_dot_proto_dot_heartbeat__pb2.SendAppHeartbeatRequest.FromString,
|
|
281
|
+
response_serializer=flwr_dot_proto_dot_heartbeat__pb2.SendAppHeartbeatResponse.SerializeToString,
|
|
277
282
|
),
|
|
278
283
|
'PullAppInputs': grpc.unary_unary_rpc_method_handler(
|
|
279
284
|
servicer.PullAppInputs,
|
|
@@ -285,26 +290,6 @@ def add_ServerAppIoServicer_to_server(servicer, server):
|
|
|
285
290
|
request_deserializer=flwr_dot_proto_dot_appio__pb2.PushAppOutputsRequest.FromString,
|
|
286
291
|
response_serializer=flwr_dot_proto_dot_appio__pb2.PushAppOutputsResponse.SerializeToString,
|
|
287
292
|
),
|
|
288
|
-
'UpdateRunStatus': grpc.unary_unary_rpc_method_handler(
|
|
289
|
-
servicer.UpdateRunStatus,
|
|
290
|
-
request_deserializer=flwr_dot_proto_dot_run__pb2.UpdateRunStatusRequest.FromString,
|
|
291
|
-
response_serializer=flwr_dot_proto_dot_run__pb2.UpdateRunStatusResponse.SerializeToString,
|
|
292
|
-
),
|
|
293
|
-
'GetRunStatus': grpc.unary_unary_rpc_method_handler(
|
|
294
|
-
servicer.GetRunStatus,
|
|
295
|
-
request_deserializer=flwr_dot_proto_dot_run__pb2.GetRunStatusRequest.FromString,
|
|
296
|
-
response_serializer=flwr_dot_proto_dot_run__pb2.GetRunStatusResponse.SerializeToString,
|
|
297
|
-
),
|
|
298
|
-
'PushLogs': grpc.unary_unary_rpc_method_handler(
|
|
299
|
-
servicer.PushLogs,
|
|
300
|
-
request_deserializer=flwr_dot_proto_dot_log__pb2.PushLogsRequest.FromString,
|
|
301
|
-
response_serializer=flwr_dot_proto_dot_log__pb2.PushLogsResponse.SerializeToString,
|
|
302
|
-
),
|
|
303
|
-
'SendAppHeartbeat': grpc.unary_unary_rpc_method_handler(
|
|
304
|
-
servicer.SendAppHeartbeat,
|
|
305
|
-
request_deserializer=flwr_dot_proto_dot_heartbeat__pb2.SendAppHeartbeatRequest.FromString,
|
|
306
|
-
response_serializer=flwr_dot_proto_dot_heartbeat__pb2.SendAppHeartbeatResponse.SerializeToString,
|
|
307
|
-
),
|
|
308
293
|
'PushObject': grpc.unary_unary_rpc_method_handler(
|
|
309
294
|
servicer.PushObject,
|
|
310
295
|
request_deserializer=flwr_dot_proto_dot_message__pb2.PushObjectRequest.FromString,
|
|
@@ -320,6 +305,41 @@ def add_ServerAppIoServicer_to_server(servicer, server):
|
|
|
320
305
|
request_deserializer=flwr_dot_proto_dot_message__pb2.ConfirmMessageReceivedRequest.FromString,
|
|
321
306
|
response_serializer=flwr_dot_proto_dot_message__pb2.ConfirmMessageReceivedResponse.SerializeToString,
|
|
322
307
|
),
|
|
308
|
+
'GetRunStatus': grpc.unary_unary_rpc_method_handler(
|
|
309
|
+
servicer.GetRunStatus,
|
|
310
|
+
request_deserializer=flwr_dot_proto_dot_run__pb2.GetRunStatusRequest.FromString,
|
|
311
|
+
response_serializer=flwr_dot_proto_dot_run__pb2.GetRunStatusResponse.SerializeToString,
|
|
312
|
+
),
|
|
313
|
+
'UpdateRunStatus': grpc.unary_unary_rpc_method_handler(
|
|
314
|
+
servicer.UpdateRunStatus,
|
|
315
|
+
request_deserializer=flwr_dot_proto_dot_run__pb2.UpdateRunStatusRequest.FromString,
|
|
316
|
+
response_serializer=flwr_dot_proto_dot_run__pb2.UpdateRunStatusResponse.SerializeToString,
|
|
317
|
+
),
|
|
318
|
+
'PushLogs': grpc.unary_unary_rpc_method_handler(
|
|
319
|
+
servicer.PushLogs,
|
|
320
|
+
request_deserializer=flwr_dot_proto_dot_log__pb2.PushLogsRequest.FromString,
|
|
321
|
+
response_serializer=flwr_dot_proto_dot_log__pb2.PushLogsResponse.SerializeToString,
|
|
322
|
+
),
|
|
323
|
+
'PushMessages': grpc.unary_unary_rpc_method_handler(
|
|
324
|
+
servicer.PushMessages,
|
|
325
|
+
request_deserializer=flwr_dot_proto_dot_appio__pb2.PushAppMessagesRequest.FromString,
|
|
326
|
+
response_serializer=flwr_dot_proto_dot_appio__pb2.PushAppMessagesResponse.SerializeToString,
|
|
327
|
+
),
|
|
328
|
+
'PullMessages': grpc.unary_unary_rpc_method_handler(
|
|
329
|
+
servicer.PullMessages,
|
|
330
|
+
request_deserializer=flwr_dot_proto_dot_appio__pb2.PullAppMessagesRequest.FromString,
|
|
331
|
+
response_serializer=flwr_dot_proto_dot_appio__pb2.PullAppMessagesResponse.SerializeToString,
|
|
332
|
+
),
|
|
333
|
+
'GetNodes': grpc.unary_unary_rpc_method_handler(
|
|
334
|
+
servicer.GetNodes,
|
|
335
|
+
request_deserializer=flwr_dot_proto_dot_serverappio__pb2.GetNodesRequest.FromString,
|
|
336
|
+
response_serializer=flwr_dot_proto_dot_serverappio__pb2.GetNodesResponse.SerializeToString,
|
|
337
|
+
),
|
|
338
|
+
'GetFab': grpc.unary_unary_rpc_method_handler(
|
|
339
|
+
servicer.GetFab,
|
|
340
|
+
request_deserializer=flwr_dot_proto_dot_fab__pb2.GetFabRequest.FromString,
|
|
341
|
+
response_serializer=flwr_dot_proto_dot_fab__pb2.GetFabResponse.SerializeToString,
|
|
342
|
+
),
|
|
323
343
|
}
|
|
324
344
|
generic_handler = grpc.method_handlers_generic_handler(
|
|
325
345
|
'flwr.proto.ServerAppIo', rpc_method_handlers)
|
|
@@ -386,7 +406,7 @@ class ServerAppIo(object):
|
|
|
386
406
|
_registered_method=True)
|
|
387
407
|
|
|
388
408
|
@staticmethod
|
|
389
|
-
def
|
|
409
|
+
def GetRun(request,
|
|
390
410
|
target,
|
|
391
411
|
options=(),
|
|
392
412
|
channel_credentials=None,
|
|
@@ -399,9 +419,9 @@ class ServerAppIo(object):
|
|
|
399
419
|
return grpc.experimental.unary_unary(
|
|
400
420
|
request,
|
|
401
421
|
target,
|
|
402
|
-
'/flwr.proto.ServerAppIo/
|
|
403
|
-
|
|
404
|
-
|
|
422
|
+
'/flwr.proto.ServerAppIo/GetRun',
|
|
423
|
+
flwr_dot_proto_dot_run__pb2.GetRunRequest.SerializeToString,
|
|
424
|
+
flwr_dot_proto_dot_run__pb2.GetRunResponse.FromString,
|
|
405
425
|
options,
|
|
406
426
|
channel_credentials,
|
|
407
427
|
insecure,
|
|
@@ -413,7 +433,7 @@ class ServerAppIo(object):
|
|
|
413
433
|
_registered_method=True)
|
|
414
434
|
|
|
415
435
|
@staticmethod
|
|
416
|
-
def
|
|
436
|
+
def SendAppHeartbeat(request,
|
|
417
437
|
target,
|
|
418
438
|
options=(),
|
|
419
439
|
channel_credentials=None,
|
|
@@ -426,9 +446,9 @@ class ServerAppIo(object):
|
|
|
426
446
|
return grpc.experimental.unary_unary(
|
|
427
447
|
request,
|
|
428
448
|
target,
|
|
429
|
-
'/flwr.proto.ServerAppIo/
|
|
430
|
-
|
|
431
|
-
|
|
449
|
+
'/flwr.proto.ServerAppIo/SendAppHeartbeat',
|
|
450
|
+
flwr_dot_proto_dot_heartbeat__pb2.SendAppHeartbeatRequest.SerializeToString,
|
|
451
|
+
flwr_dot_proto_dot_heartbeat__pb2.SendAppHeartbeatResponse.FromString,
|
|
432
452
|
options,
|
|
433
453
|
channel_credentials,
|
|
434
454
|
insecure,
|
|
@@ -440,7 +460,7 @@ class ServerAppIo(object):
|
|
|
440
460
|
_registered_method=True)
|
|
441
461
|
|
|
442
462
|
@staticmethod
|
|
443
|
-
def
|
|
463
|
+
def PullAppInputs(request,
|
|
444
464
|
target,
|
|
445
465
|
options=(),
|
|
446
466
|
channel_credentials=None,
|
|
@@ -453,9 +473,9 @@ class ServerAppIo(object):
|
|
|
453
473
|
return grpc.experimental.unary_unary(
|
|
454
474
|
request,
|
|
455
475
|
target,
|
|
456
|
-
'/flwr.proto.ServerAppIo/
|
|
457
|
-
flwr_dot_proto_dot_appio__pb2.
|
|
458
|
-
flwr_dot_proto_dot_appio__pb2.
|
|
476
|
+
'/flwr.proto.ServerAppIo/PullAppInputs',
|
|
477
|
+
flwr_dot_proto_dot_appio__pb2.PullAppInputsRequest.SerializeToString,
|
|
478
|
+
flwr_dot_proto_dot_appio__pb2.PullAppInputsResponse.FromString,
|
|
459
479
|
options,
|
|
460
480
|
channel_credentials,
|
|
461
481
|
insecure,
|
|
@@ -467,7 +487,7 @@ class ServerAppIo(object):
|
|
|
467
487
|
_registered_method=True)
|
|
468
488
|
|
|
469
489
|
@staticmethod
|
|
470
|
-
def
|
|
490
|
+
def PushAppOutputs(request,
|
|
471
491
|
target,
|
|
472
492
|
options=(),
|
|
473
493
|
channel_credentials=None,
|
|
@@ -480,9 +500,9 @@ class ServerAppIo(object):
|
|
|
480
500
|
return grpc.experimental.unary_unary(
|
|
481
501
|
request,
|
|
482
502
|
target,
|
|
483
|
-
'/flwr.proto.ServerAppIo/
|
|
484
|
-
|
|
485
|
-
|
|
503
|
+
'/flwr.proto.ServerAppIo/PushAppOutputs',
|
|
504
|
+
flwr_dot_proto_dot_appio__pb2.PushAppOutputsRequest.SerializeToString,
|
|
505
|
+
flwr_dot_proto_dot_appio__pb2.PushAppOutputsResponse.FromString,
|
|
486
506
|
options,
|
|
487
507
|
channel_credentials,
|
|
488
508
|
insecure,
|
|
@@ -494,7 +514,7 @@ class ServerAppIo(object):
|
|
|
494
514
|
_registered_method=True)
|
|
495
515
|
|
|
496
516
|
@staticmethod
|
|
497
|
-
def
|
|
517
|
+
def PushObject(request,
|
|
498
518
|
target,
|
|
499
519
|
options=(),
|
|
500
520
|
channel_credentials=None,
|
|
@@ -507,9 +527,9 @@ class ServerAppIo(object):
|
|
|
507
527
|
return grpc.experimental.unary_unary(
|
|
508
528
|
request,
|
|
509
529
|
target,
|
|
510
|
-
'/flwr.proto.ServerAppIo/
|
|
511
|
-
|
|
512
|
-
|
|
530
|
+
'/flwr.proto.ServerAppIo/PushObject',
|
|
531
|
+
flwr_dot_proto_dot_message__pb2.PushObjectRequest.SerializeToString,
|
|
532
|
+
flwr_dot_proto_dot_message__pb2.PushObjectResponse.FromString,
|
|
513
533
|
options,
|
|
514
534
|
channel_credentials,
|
|
515
535
|
insecure,
|
|
@@ -521,7 +541,7 @@ class ServerAppIo(object):
|
|
|
521
541
|
_registered_method=True)
|
|
522
542
|
|
|
523
543
|
@staticmethod
|
|
524
|
-
def
|
|
544
|
+
def PullObject(request,
|
|
525
545
|
target,
|
|
526
546
|
options=(),
|
|
527
547
|
channel_credentials=None,
|
|
@@ -534,9 +554,9 @@ class ServerAppIo(object):
|
|
|
534
554
|
return grpc.experimental.unary_unary(
|
|
535
555
|
request,
|
|
536
556
|
target,
|
|
537
|
-
'/flwr.proto.ServerAppIo/
|
|
538
|
-
|
|
539
|
-
|
|
557
|
+
'/flwr.proto.ServerAppIo/PullObject',
|
|
558
|
+
flwr_dot_proto_dot_message__pb2.PullObjectRequest.SerializeToString,
|
|
559
|
+
flwr_dot_proto_dot_message__pb2.PullObjectResponse.FromString,
|
|
540
560
|
options,
|
|
541
561
|
channel_credentials,
|
|
542
562
|
insecure,
|
|
@@ -548,7 +568,7 @@ class ServerAppIo(object):
|
|
|
548
568
|
_registered_method=True)
|
|
549
569
|
|
|
550
570
|
@staticmethod
|
|
551
|
-
def
|
|
571
|
+
def ConfirmMessageReceived(request,
|
|
552
572
|
target,
|
|
553
573
|
options=(),
|
|
554
574
|
channel_credentials=None,
|
|
@@ -561,9 +581,9 @@ class ServerAppIo(object):
|
|
|
561
581
|
return grpc.experimental.unary_unary(
|
|
562
582
|
request,
|
|
563
583
|
target,
|
|
564
|
-
'/flwr.proto.ServerAppIo/
|
|
565
|
-
|
|
566
|
-
|
|
584
|
+
'/flwr.proto.ServerAppIo/ConfirmMessageReceived',
|
|
585
|
+
flwr_dot_proto_dot_message__pb2.ConfirmMessageReceivedRequest.SerializeToString,
|
|
586
|
+
flwr_dot_proto_dot_message__pb2.ConfirmMessageReceivedResponse.FromString,
|
|
567
587
|
options,
|
|
568
588
|
channel_credentials,
|
|
569
589
|
insecure,
|
|
@@ -575,7 +595,7 @@ class ServerAppIo(object):
|
|
|
575
595
|
_registered_method=True)
|
|
576
596
|
|
|
577
597
|
@staticmethod
|
|
578
|
-
def
|
|
598
|
+
def GetRunStatus(request,
|
|
579
599
|
target,
|
|
580
600
|
options=(),
|
|
581
601
|
channel_credentials=None,
|
|
@@ -588,9 +608,9 @@ class ServerAppIo(object):
|
|
|
588
608
|
return grpc.experimental.unary_unary(
|
|
589
609
|
request,
|
|
590
610
|
target,
|
|
591
|
-
'/flwr.proto.ServerAppIo/
|
|
592
|
-
flwr_dot_proto_dot_run__pb2.
|
|
593
|
-
flwr_dot_proto_dot_run__pb2.
|
|
611
|
+
'/flwr.proto.ServerAppIo/GetRunStatus',
|
|
612
|
+
flwr_dot_proto_dot_run__pb2.GetRunStatusRequest.SerializeToString,
|
|
613
|
+
flwr_dot_proto_dot_run__pb2.GetRunStatusResponse.FromString,
|
|
594
614
|
options,
|
|
595
615
|
channel_credentials,
|
|
596
616
|
insecure,
|
|
@@ -602,7 +622,7 @@ class ServerAppIo(object):
|
|
|
602
622
|
_registered_method=True)
|
|
603
623
|
|
|
604
624
|
@staticmethod
|
|
605
|
-
def
|
|
625
|
+
def UpdateRunStatus(request,
|
|
606
626
|
target,
|
|
607
627
|
options=(),
|
|
608
628
|
channel_credentials=None,
|
|
@@ -615,9 +635,9 @@ class ServerAppIo(object):
|
|
|
615
635
|
return grpc.experimental.unary_unary(
|
|
616
636
|
request,
|
|
617
637
|
target,
|
|
618
|
-
'/flwr.proto.ServerAppIo/
|
|
619
|
-
flwr_dot_proto_dot_run__pb2.
|
|
620
|
-
flwr_dot_proto_dot_run__pb2.
|
|
638
|
+
'/flwr.proto.ServerAppIo/UpdateRunStatus',
|
|
639
|
+
flwr_dot_proto_dot_run__pb2.UpdateRunStatusRequest.SerializeToString,
|
|
640
|
+
flwr_dot_proto_dot_run__pb2.UpdateRunStatusResponse.FromString,
|
|
621
641
|
options,
|
|
622
642
|
channel_credentials,
|
|
623
643
|
insecure,
|
|
@@ -656,7 +676,7 @@ class ServerAppIo(object):
|
|
|
656
676
|
_registered_method=True)
|
|
657
677
|
|
|
658
678
|
@staticmethod
|
|
659
|
-
def
|
|
679
|
+
def PushMessages(request,
|
|
660
680
|
target,
|
|
661
681
|
options=(),
|
|
662
682
|
channel_credentials=None,
|
|
@@ -669,9 +689,9 @@ class ServerAppIo(object):
|
|
|
669
689
|
return grpc.experimental.unary_unary(
|
|
670
690
|
request,
|
|
671
691
|
target,
|
|
672
|
-
'/flwr.proto.ServerAppIo/
|
|
673
|
-
|
|
674
|
-
|
|
692
|
+
'/flwr.proto.ServerAppIo/PushMessages',
|
|
693
|
+
flwr_dot_proto_dot_appio__pb2.PushAppMessagesRequest.SerializeToString,
|
|
694
|
+
flwr_dot_proto_dot_appio__pb2.PushAppMessagesResponse.FromString,
|
|
675
695
|
options,
|
|
676
696
|
channel_credentials,
|
|
677
697
|
insecure,
|
|
@@ -683,7 +703,7 @@ class ServerAppIo(object):
|
|
|
683
703
|
_registered_method=True)
|
|
684
704
|
|
|
685
705
|
@staticmethod
|
|
686
|
-
def
|
|
706
|
+
def PullMessages(request,
|
|
687
707
|
target,
|
|
688
708
|
options=(),
|
|
689
709
|
channel_credentials=None,
|
|
@@ -696,9 +716,9 @@ class ServerAppIo(object):
|
|
|
696
716
|
return grpc.experimental.unary_unary(
|
|
697
717
|
request,
|
|
698
718
|
target,
|
|
699
|
-
'/flwr.proto.ServerAppIo/
|
|
700
|
-
|
|
701
|
-
|
|
719
|
+
'/flwr.proto.ServerAppIo/PullMessages',
|
|
720
|
+
flwr_dot_proto_dot_appio__pb2.PullAppMessagesRequest.SerializeToString,
|
|
721
|
+
flwr_dot_proto_dot_appio__pb2.PullAppMessagesResponse.FromString,
|
|
702
722
|
options,
|
|
703
723
|
channel_credentials,
|
|
704
724
|
insecure,
|
|
@@ -710,7 +730,7 @@ class ServerAppIo(object):
|
|
|
710
730
|
_registered_method=True)
|
|
711
731
|
|
|
712
732
|
@staticmethod
|
|
713
|
-
def
|
|
733
|
+
def GetNodes(request,
|
|
714
734
|
target,
|
|
715
735
|
options=(),
|
|
716
736
|
channel_credentials=None,
|
|
@@ -723,9 +743,9 @@ class ServerAppIo(object):
|
|
|
723
743
|
return grpc.experimental.unary_unary(
|
|
724
744
|
request,
|
|
725
745
|
target,
|
|
726
|
-
'/flwr.proto.ServerAppIo/
|
|
727
|
-
|
|
728
|
-
|
|
746
|
+
'/flwr.proto.ServerAppIo/GetNodes',
|
|
747
|
+
flwr_dot_proto_dot_serverappio__pb2.GetNodesRequest.SerializeToString,
|
|
748
|
+
flwr_dot_proto_dot_serverappio__pb2.GetNodesResponse.FromString,
|
|
729
749
|
options,
|
|
730
750
|
channel_credentials,
|
|
731
751
|
insecure,
|
|
@@ -737,7 +757,7 @@ class ServerAppIo(object):
|
|
|
737
757
|
_registered_method=True)
|
|
738
758
|
|
|
739
759
|
@staticmethod
|
|
740
|
-
def
|
|
760
|
+
def GetFab(request,
|
|
741
761
|
target,
|
|
742
762
|
options=(),
|
|
743
763
|
channel_credentials=None,
|
|
@@ -750,9 +770,9 @@ class ServerAppIo(object):
|
|
|
750
770
|
return grpc.experimental.unary_unary(
|
|
751
771
|
request,
|
|
752
772
|
target,
|
|
753
|
-
'/flwr.proto.ServerAppIo/
|
|
754
|
-
|
|
755
|
-
|
|
773
|
+
'/flwr.proto.ServerAppIo/GetFab',
|
|
774
|
+
flwr_dot_proto_dot_fab__pb2.GetFabRequest.SerializeToString,
|
|
775
|
+
flwr_dot_proto_dot_fab__pb2.GetFabResponse.FromString,
|
|
756
776
|
options,
|
|
757
777
|
channel_credentials,
|
|
758
778
|
insecure,
|