reactr
reactr copied to clipboard
Function scheduler for Go & WebAssembly
I've been reading over the witx-bindgen repo and decided to give it a try to see how to generate host imports. Still need to test it out with their macro...
Would be great if there was a function to convert a CoordinatedRequest into a regular HTTP Request. _Originally posted by @shoestealerz in https://github.com/suborbital/reactr/issues/151#issuecomment-947058506_
Specifically, the ability to reference CIDR ranges of IP addresses per https://github.com/suborbital/reactr/pull/140#discussion_r701853443
The parsing of state and params headers for Atmo's headless mode currently live in Atmo's coordinator, and they should instead live as a method on CoordinatedRequest
After #95 is available, Reactr should offer options to automatically unload/de-register handlers based on rules: - unload anything that hasn't been called in x time - unload oldest when total...
Runnables should have `profiles` that dictate which `capabilities` they're given access to (per #96). This would allow more granular control over what Runnables are able to do.
Currently Runnables accept an `interface{}` as their Job payload. This causes issues with type coercion, and it simply a bad pattern for the long term. I propose the concept of...
Currently, a Runnable includes the `OnChange` method which allows it to handle events such as adding new instances. With the Superfunc concept, this method is no longer available, but in...
The Runnable API should gain the ability to access blob storage such as S3. This would allow Runnables to read and write files to/from blob storage. This should be designed...
When RunErr is converted to VKErr, it should only allow error codes that are valid HTTP codes, and set to 500 if not.