Basic queue & actor notes

main
~erin 2023-04-20 14:40:38 -04:00
parent 323a0c9a63
commit 9546c11798
Signed by: erin
GPG Key ID: 9A8E308CEFA37A47
2 changed files with 13 additions and 4 deletions

View File

@ -1 +1,11 @@
# Actor System
## OCAP
**TODO**
## Messages
**TODO**
- [postcard](https://lib.rs/crates/postcard) for message passing
- Priority Queue for processing multiple messages, while dealing with higher-priority ones first
### Latency

View File

@ -20,14 +20,13 @@ This will include the [filesystem](/development/design/filesystem.md), [actors](
This might include operations like *hashing*, *encryption*, and *indexing*.
## Boot Process
*To be implemented*
**TODO**
## Memory Management
*To-Do*
**TODO**
## Processes
*To-Do*
- [postcard](https://lib.rs/crates/postcard) for message passing
**TODO**
## Error Handling
All errors must be handled gracefully by the `kernel`. If possible, they should simply log an error.