Jeffrey Konowitch
Jeffrey Konowitch
### Feature description In the documentation section [Don't just jump to another queue!](https://worker.graphile.org/docs/scaling#dont-just-jump-to-another-queue), you make the following suggestion: > I have plans that I've not had time to implement w.r.t....
### Code: ```typescript // main.ts import { Application, Router } from '@oak/oak'; const router = new Router(); router.get('/wss', (context) => { const socket = context.upgrade(); socket.onmessage = (event) => {...
## Example 1 ```typescript const minimalRepro = ( fn: () => AsyncResult ): AsyncResult => { return Result.gen(function* () { const r = yield* fn(); return Result.ok(r); }) } ```...