You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`InputEntryMessage`|`0x0400`| No | No | Carries the invocation input message(s) of the invocation. |
336
-
|`GetStateEntryMessage`|`0x0800`| Yes | No | Get the value of a service instance state key. |
337
-
|`GetStateKeysEntryMessage`|`0x0804`| Yes | No | Get all the known state keys for this service instance. Note: the completion value for this message is a protobuf of type `GetStateKeysEntryMessage.StateKeys`. |
338
-
|`SleepEntryMessage`|`0x0C00`| Yes | No | Initiate a timer that completes after the given time. |
339
-
|`CallEntryMessage`|`0x0C01`| Yes | Yes | Invoke another Restate service. |
340
-
|`AwakeableEntryMessage`|`0x0C03`| Yes | No | Arbitrary result container which can be completed from another service, given a specific id. See [Awakeable identifier](#awakeable-identifier) for more details. |
341
-
|`OneWayCallEntryMessage`|`0x0C02`| No | Yes | Invoke another Restate service at the given time, without waiting for the response. |
342
-
|`CompleteAwakeableEntryMessage`|`0x0C04`| No | Yes | Complete an `Awakeable`, given its id. See [Awakeable identifier](#awakeable-identifier) for more details. |
343
-
|`OutputEntryMessage`|`0x0401`| No | No | Carries the invocation output message(s) or terminal failure of the invocation. |
344
-
|`SetStateEntryMessage`|`0x0800`| No | No | Set the value of a service instance state key. |
345
-
|`ClearStateEntryMessage`|`0x0801`| No | No | Clear the value of a service instance state key. |
346
-
|`ClearAllStateEntryMessage`|`0x0802`| No | No | Clear all the values of the service instance state. |
347
-
|`RunEntryMessage`|`0x0C05`| No | No | Run non-deterministic user provided code and persist the result. |
348
-
|`GetPromiseEntryMessage`|`0x0808`| Yes | No | Get or wait the value of the given promise. If the value is not present yet, this entry will block waiting for the value. |
349
-
|`PeekPromiseEntryMessage`|`0x0809`| Yes | No | Get the value of the given promise. If the value is not present, this entry completes immediately with empty completion. |
350
-
|`CompletePromiseEntryMessage`|`0x080A`| Yes | No | Complete the given promise. If the promise was completed already, this entry completes with a failure. |
|`InputEntryMessage`|`0x0400`| No | No | Carries the invocation input message(s) of the invocation. |
336
+
|`GetStateEntryMessage`|`0x0800`| Yes | No | Get the value of a service instance state key. |
337
+
|`GetStateKeysEntryMessage`|`0x0804`| Yes | No | Get all the known state keys for this service instance. Note: the completion value for this message is a protobuf of type `GetStateKeysEntryMessage.StateKeys`. |
338
+
|`SleepEntryMessage`|`0x0C00`| Yes | No | Initiate a timer that completes after the given time. |
339
+
|`CallEntryMessage`|`0x0C01`| Yes | Yes | Invoke another Restate service. |
340
+
|`AwakeableEntryMessage`|`0x0C03`| Yes | No | Arbitrary result container which can be completed from another service, given a specific id. See [Awakeable identifier](#awakeable-identifier) for more details. |
341
+
|`OneWayCallEntryMessage`|`0x0C02`| No | Yes | Invoke another Restate service at the given time, without waiting for the response. |
342
+
|`CompleteAwakeableEntryMessage`|`0x0C04`| No | Yes | Complete an `Awakeable`, given its id. See [Awakeable identifier](#awakeable-identifier) for more details. |
343
+
|`OutputEntryMessage`|`0x0401`| No | No | Carries the invocation output message(s) or terminal failure of the invocation. |
344
+
|`SetStateEntryMessage`|`0x0800`| No | No | Set the value of a service instance state key. |
345
+
|`ClearStateEntryMessage`|`0x0801`| No | No | Clear the value of a service instance state key. |
346
+
|`ClearAllStateEntryMessage`|`0x0802`| No | No | Clear all the values of the service instance state. |
347
+
|`RunEntryMessage`|`0x0C05`| No | No | Run non-deterministic user provided code and persist the result. |
348
+
|`GetPromiseEntryMessage`|`0x0808`| Yes | No | Get or wait the value of the given promise. If the value is not present yet, this entry will block waiting for the value. |
349
+
|`PeekPromiseEntryMessage`|`0x0809`| Yes | No | Get the value of the given promise. If the value is not present, this entry completes immediately with empty completion. |
350
+
|`CompletePromiseEntryMessage`|`0x080A`| Yes | No | Complete the given promise. If the promise was completed already, this entry completes with a failure. |
351
+
|`CancelInvocationEntryMessage`|`0x0C06`| No | Yes | Cancel the target invocation id or the target journal entry. |
352
+
|`GetCallInvocationIdEntryMessage`|`0x0C07`| Yes | Yes | Get the invocation id of a previously created call/one way call. |
0 commit comments