Sam Sussman

Results 110 issues of Sam Sussman

Incomplete prototype of a call that allows for real promises in workflow. Leaving it here to not lose it. For example, allows running `import` directly from a workflow. Which is...

Workflow threw a ReferenceError, but the `normalizeError` function returns `{}`. Should get the message and the error name instead. Actual: > Error: {} Expected > ReferenceError: message

```ts workflow(() => { const act = act1(); act.onHeartbeat(async ({ i: 100 }) => { await reportProgress(i); }); }); const reportProceess = activity(...); const act1 = activity({ heartbeat: { seconds:...

To go with `Event` (https://github.com/functionless/eventual/issues/49), which has Singlecast semantics via `execution.send`, we should support a broadcast semantic. ```ts const ping = new Event("ping"); const pong = new Event("pong"); const worker...

There are some dynamic properties which can be read by the user from within a workflow. For example, the BucketPhysicaName or the current Date at the time of execution. If...

https://docs.aws.amazon.com/eventbridge/latest/userguide/scheduler.html

Goal: support graphQL field resolvers and subscriptions through commands. Sub-Goals: 1. Support interop with RPC and Rest 2. Minimize duplication 3. avoid leaking AWS specifics 4. maintain type safety #...

Services need access to named static or dynamic data. This data may be known statically at synth time, after deployment time, or could be created once and updated later. This...