David Farr

Results 23 issues of 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...

enhancement
good first issue

Currently only http is supported, we should investigate websockets and SSE (server sent events) and choose a protocol to support.

enhancement

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...

enhancement
good first issue

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...

enhancement

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...

enhancement
good first issue
help wanted