David Farr
David Farr
It would be nice to see the version of resonate I have installed locally. ``` resonate --version ``` The version is tied to the git tag and can be set...
Currently only http is supported, we should investigate websockets and SSE (server sent events) and choose a protocol to support.
Sometimes when we encounter an intolerable error we call `panic()` directly, instead we could call `utils.Assert(false, ...)` that way we would have the opportunity to optionally turn off strict panicing...
Add FCs
TFC: top level function call LFC: local function call RFC: remote function call
```ts class DurablePromise { async wait(t: number) { ... } } ``` This lower level async API waits until the promise is completed and returns `void`. If the promise is...
Tasks v2
After calling `CheckOperationsVerbose` and getting a result I would love be able to access the "longest linearizable path" found. In the case of an `Ok` result this would be equivalent...
Create a callback associated with a promise. Commands: - create Examples: ``` resonate callbacks create --promise-id foo --root-promise-id bar --timeout 1h --recv default ``` A receiver can be either a...