flwr-nightly 1.26.0.dev20260130__py3-none-any.whl → 1.26.0.dev20260201__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 +1 -1
- flwr/proto/clientappio_pb2_grpc.py +106 -90
- flwr/proto/clientappio_pb2_grpc.pyi +145 -85
- flwr/proto/serverappio_pb2.py +1 -1
- flwr/proto/serverappio_pb2_grpc.py +168 -148
- flwr/proto/serverappio_pb2_grpc.pyi +209 -134
- flwr/proto/simulationio_pb2.py +1 -1
- flwr/proto/simulationio_pb2_grpc.py +80 -64
- flwr/proto/simulationio_pb2_grpc.pyi +109 -49
- {flwr_nightly-1.26.0.dev20260130.dist-info → flwr_nightly-1.26.0.dev20260201.dist-info}/METADATA +2 -2
- {flwr_nightly-1.26.0.dev20260130.dist-info → flwr_nightly-1.26.0.dev20260201.dist-info}/RECORD +15 -15
- {flwr_nightly-1.26.0.dev20260130.dist-info → flwr_nightly-1.26.0.dev20260201.dist-info}/WHEEL +0 -0
- {flwr_nightly-1.26.0.dev20260130.dist-info → flwr_nightly-1.26.0.dev20260201.dist-info}/entry_points.txt +0 -0
|
@@ -50,30 +50,30 @@ 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,
|
|
62
|
+
_registered_method=True)
|
|
63
|
+
self.PushObject = channel.unary_unary(
|
|
64
|
+
'/flwr.proto.ServerAppIo/PushObject',
|
|
65
|
+
request_serializer=flwr_dot_proto_dot_message__pb2.PushObjectRequest.SerializeToString,
|
|
66
|
+
response_deserializer=flwr_dot_proto_dot_message__pb2.PushObjectResponse.FromString,
|
|
67
|
+
_registered_method=True)
|
|
68
|
+
self.PullObject = channel.unary_unary(
|
|
69
|
+
'/flwr.proto.ServerAppIo/PullObject',
|
|
70
|
+
request_serializer=flwr_dot_proto_dot_message__pb2.PullObjectRequest.SerializeToString,
|
|
71
|
+
response_deserializer=flwr_dot_proto_dot_message__pb2.PullObjectResponse.FromString,
|
|
72
|
+
_registered_method=True)
|
|
73
|
+
self.ConfirmMessageReceived = channel.unary_unary(
|
|
74
|
+
'/flwr.proto.ServerAppIo/ConfirmMessageReceived',
|
|
75
|
+
request_serializer=flwr_dot_proto_dot_message__pb2.ConfirmMessageReceivedRequest.SerializeToString,
|
|
76
|
+
response_deserializer=flwr_dot_proto_dot_message__pb2.ConfirmMessageReceivedResponse.FromString,
|
|
77
77
|
_registered_method=True)
|
|
78
78
|
self.PullAppInputs = channel.unary_unary(
|
|
79
79
|
'/flwr.proto.ServerAppIo/PullAppInputs',
|
|
@@ -85,40 +85,40 @@ class ServerAppIoStub(object):
|
|
|
85
85
|
request_serializer=flwr_dot_proto_dot_appio__pb2.PushAppOutputsRequest.SerializeToString,
|
|
86
86
|
response_deserializer=flwr_dot_proto_dot_appio__pb2.PushAppOutputsResponse.FromString,
|
|
87
87
|
_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
88
|
self.GetRunStatus = channel.unary_unary(
|
|
94
89
|
'/flwr.proto.ServerAppIo/GetRunStatus',
|
|
95
90
|
request_serializer=flwr_dot_proto_dot_run__pb2.GetRunStatusRequest.SerializeToString,
|
|
96
91
|
response_deserializer=flwr_dot_proto_dot_run__pb2.GetRunStatusResponse.FromString,
|
|
97
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
98
|
self.PushLogs = channel.unary_unary(
|
|
99
99
|
'/flwr.proto.ServerAppIo/PushLogs',
|
|
100
100
|
request_serializer=flwr_dot_proto_dot_log__pb2.PushLogsRequest.SerializeToString,
|
|
101
101
|
response_deserializer=flwr_dot_proto_dot_log__pb2.PushLogsResponse.FromString,
|
|
102
102
|
_registered_method=True)
|
|
103
|
-
self.
|
|
104
|
-
'/flwr.proto.ServerAppIo/
|
|
105
|
-
request_serializer=
|
|
106
|
-
response_deserializer=
|
|
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
107
|
_registered_method=True)
|
|
108
|
-
self.
|
|
109
|
-
'/flwr.proto.ServerAppIo/
|
|
110
|
-
request_serializer=
|
|
111
|
-
response_deserializer=
|
|
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
112
|
_registered_method=True)
|
|
113
|
-
self.
|
|
114
|
-
'/flwr.proto.ServerAppIo/
|
|
115
|
-
request_serializer=
|
|
116
|
-
response_deserializer=
|
|
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
117
|
_registered_method=True)
|
|
118
|
-
self.
|
|
119
|
-
'/flwr.proto.ServerAppIo/
|
|
120
|
-
request_serializer=
|
|
121
|
-
response_deserializer=
|
|
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
122
|
_registered_method=True)
|
|
123
123
|
|
|
124
124
|
|
|
@@ -126,7 +126,11 @@ 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,43 +143,55 @@ 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 PushObject(self, request, context):
|
|
165
|
+
"""///////////////////////////////////////////////////////////////////////////
|
|
166
|
+
Specific endpoints shared by ServerAppIo and ClientAppIo
|
|
167
|
+
///////////////////////////////////////////////////////////////////////////
|
|
168
|
+
|
|
169
|
+
Push Object
|
|
158
170
|
"""
|
|
159
171
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
160
172
|
context.set_details('Method not implemented!')
|
|
161
173
|
raise NotImplementedError('Method not implemented!')
|
|
162
174
|
|
|
163
|
-
def
|
|
164
|
-
"""
|
|
175
|
+
def PullObject(self, request, context):
|
|
176
|
+
"""Pull Object
|
|
165
177
|
"""
|
|
166
178
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
167
179
|
context.set_details('Method not implemented!')
|
|
168
180
|
raise NotImplementedError('Method not implemented!')
|
|
169
181
|
|
|
170
|
-
def
|
|
171
|
-
"""
|
|
182
|
+
def ConfirmMessageReceived(self, request, context):
|
|
183
|
+
"""Confirm Message Received
|
|
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
189
|
def PullAppInputs(self, request, context):
|
|
178
|
-
"""
|
|
190
|
+
"""///////////////////////////////////////////////////////////////////////////
|
|
191
|
+
Specific endpoints shared by ServerAppIo and SimulationIo
|
|
192
|
+
///////////////////////////////////////////////////////////////////////////
|
|
193
|
+
|
|
194
|
+
Pull ServerApp inputs
|
|
179
195
|
"""
|
|
180
196
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
181
197
|
context.set_details('Method not implemented!')
|
|
@@ -188,15 +204,15 @@ class ServerAppIoServicer(object):
|
|
|
188
204
|
context.set_details('Method not implemented!')
|
|
189
205
|
raise NotImplementedError('Method not implemented!')
|
|
190
206
|
|
|
191
|
-
def
|
|
192
|
-
"""
|
|
207
|
+
def GetRunStatus(self, request, context):
|
|
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,30 @@ 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,
|
|
282
|
+
),
|
|
283
|
+
'PushObject': grpc.unary_unary_rpc_method_handler(
|
|
284
|
+
servicer.PushObject,
|
|
285
|
+
request_deserializer=flwr_dot_proto_dot_message__pb2.PushObjectRequest.FromString,
|
|
286
|
+
response_serializer=flwr_dot_proto_dot_message__pb2.PushObjectResponse.SerializeToString,
|
|
287
|
+
),
|
|
288
|
+
'PullObject': grpc.unary_unary_rpc_method_handler(
|
|
289
|
+
servicer.PullObject,
|
|
290
|
+
request_deserializer=flwr_dot_proto_dot_message__pb2.PullObjectRequest.FromString,
|
|
291
|
+
response_serializer=flwr_dot_proto_dot_message__pb2.PullObjectResponse.SerializeToString,
|
|
292
|
+
),
|
|
293
|
+
'ConfirmMessageReceived': grpc.unary_unary_rpc_method_handler(
|
|
294
|
+
servicer.ConfirmMessageReceived,
|
|
295
|
+
request_deserializer=flwr_dot_proto_dot_message__pb2.ConfirmMessageReceivedRequest.FromString,
|
|
296
|
+
response_serializer=flwr_dot_proto_dot_message__pb2.ConfirmMessageReceivedResponse.SerializeToString,
|
|
277
297
|
),
|
|
278
298
|
'PullAppInputs': grpc.unary_unary_rpc_method_handler(
|
|
279
299
|
servicer.PullAppInputs,
|
|
@@ -285,40 +305,40 @@ def add_ServerAppIoServicer_to_server(servicer, server):
|
|
|
285
305
|
request_deserializer=flwr_dot_proto_dot_appio__pb2.PushAppOutputsRequest.FromString,
|
|
286
306
|
response_serializer=flwr_dot_proto_dot_appio__pb2.PushAppOutputsResponse.SerializeToString,
|
|
287
307
|
),
|
|
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
308
|
'GetRunStatus': grpc.unary_unary_rpc_method_handler(
|
|
294
309
|
servicer.GetRunStatus,
|
|
295
310
|
request_deserializer=flwr_dot_proto_dot_run__pb2.GetRunStatusRequest.FromString,
|
|
296
311
|
response_serializer=flwr_dot_proto_dot_run__pb2.GetRunStatusResponse.SerializeToString,
|
|
297
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
|
+
),
|
|
298
318
|
'PushLogs': grpc.unary_unary_rpc_method_handler(
|
|
299
319
|
servicer.PushLogs,
|
|
300
320
|
request_deserializer=flwr_dot_proto_dot_log__pb2.PushLogsRequest.FromString,
|
|
301
321
|
response_serializer=flwr_dot_proto_dot_log__pb2.PushLogsResponse.SerializeToString,
|
|
302
322
|
),
|
|
303
|
-
'
|
|
304
|
-
servicer.
|
|
305
|
-
request_deserializer=
|
|
306
|
-
response_serializer=
|
|
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,
|
|
307
327
|
),
|
|
308
|
-
'
|
|
309
|
-
servicer.
|
|
310
|
-
request_deserializer=
|
|
311
|
-
response_serializer=
|
|
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,
|
|
312
332
|
),
|
|
313
|
-
'
|
|
314
|
-
servicer.
|
|
315
|
-
request_deserializer=
|
|
316
|
-
response_serializer=
|
|
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,
|
|
317
337
|
),
|
|
318
|
-
'
|
|
319
|
-
servicer.
|
|
320
|
-
request_deserializer=
|
|
321
|
-
response_serializer=
|
|
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,
|
|
322
342
|
),
|
|
323
343
|
}
|
|
324
344
|
generic_handler = grpc.method_handlers_generic_handler(
|
|
@@ -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 PushObject(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
|
-
|
|
458
|
-
|
|
476
|
+
'/flwr.proto.ServerAppIo/PushObject',
|
|
477
|
+
flwr_dot_proto_dot_message__pb2.PushObjectRequest.SerializeToString,
|
|
478
|
+
flwr_dot_proto_dot_message__pb2.PushObjectResponse.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 PullObject(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/PullObject',
|
|
504
|
+
flwr_dot_proto_dot_message__pb2.PullObjectRequest.SerializeToString,
|
|
505
|
+
flwr_dot_proto_dot_message__pb2.PullObjectResponse.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 ConfirmMessageReceived(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/ConfirmMessageReceived',
|
|
531
|
+
flwr_dot_proto_dot_message__pb2.ConfirmMessageReceivedRequest.SerializeToString,
|
|
532
|
+
flwr_dot_proto_dot_message__pb2.ConfirmMessageReceivedResponse.FromString,
|
|
513
533
|
options,
|
|
514
534
|
channel_credentials,
|
|
515
535
|
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,
|