@@ -100,17 +100,33 @@ message ReceiveRequestsMessageFromController {
100100 // Creates an entry in the agent's schedule. Note that entries are
101101 // immutable: once created, an entry may not changed, though it may be
102102 // deleted.
103+ //
104+ // The agent (or a proxy acting on its behalf) must use the CreateEntry
105+ // request’s response status solely to indicate transport-level receipt of
106+ // the request, and not to indicate whether the agent can, or will, achieve
107+ // the requested configuration. An error status will cause Spacetime to
108+ // resend the request message to the agent.
103109 CreateEntryRequest create_entry = 2 ;
104110
105111 // Deletes an entry from the agent's schedule.
112+ //
113+ // The agent (or a proxy acting on its behalf) must use the DeleteEntry
114+ // request’s response status to indicate transport-level receipt of the
115+ // request. An error status will cause Spacetime to resend the request
116+ // message to the agent.
106117 DeleteEntryRequest delete_entry = 3 ;
107118
108119 // Finalizes all schedule entries earlier than a specified time.
109120 //
110121 // Notifies the agent that all aspects of its schedule pertaining to the
111- // interval prior to a given instant will no longer be modified . This frees
122+ // interval prior to a given instant will no longer be modified. This frees
112123 // the agent to garbage-collect all entries scheduled for before that
113124 // instant.
125+ //
126+ // The agent (or a proxy acting on its behalf) must use the Finalize
127+ // request’s response status to indicate transport-level receipt of the
128+ // request. An error status will cause Spacetime to resend the request
129+ // message to the agent.
114130 FinalizeRequest finalize = 4 ;
115131 }
116132}
0 commit comments