Skip to content

Commit 576c9de

Browse files
Adding field FunctionLoadResponseCollection (#66)
1 parent 73658b7 commit 576c9de

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/proto/FunctionRpc.proto

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,9 @@ message StreamingMessage {
8282

8383
// Host sends required metadata to worker to load functions
8484
FunctionLoadRequestCollection function_load_request_collection = 31;
85+
86+
// Host gets the list of function load responses
87+
FunctionLoadResponseCollection function_load_response_collection = 32;
8588
}
8689
}
8790

@@ -228,6 +231,11 @@ message FunctionLoadRequestCollection {
228231
repeated FunctionLoadRequest function_load_requests = 1;
229232
}
230233

234+
// Host gets the list of function load responses
235+
message FunctionLoadResponseCollection {
236+
repeated FunctionLoadResponse function_load_responses = 1;
237+
}
238+
231239
// Load request of a single Function
232240
message FunctionLoadRequest {
233241
// unique function identifier (avoid name collisions, facilitate reload case)

0 commit comments

Comments
 (0)