Overwatch/overwatch-rs
Daniel Sanchez 2f708060f7
Fix run all missplacement (#31)
2023-10-24 12:18:06 +02:00
..
src Fix run all missplacement (#31) 2023-10-24 12:18:06 +02:00
tests Plug services lifecycle (Shutdown and Kill) (#27) 2023-10-09 14:00:12 +02:00
Cargo.toml Plug services lifecycle (Shutdown and Kill) (#27) 2023-10-09 14:00:12 +02:00
LICENSE Publish ready (#7) 2022-11-16 14:15:58 +01:00
README.md Publish ready (#7) 2022-11-16 14:15:58 +01:00

README.md

Overwatch

github crates.io docs.rs build status

Overwatch is a framework to easily construct applications that requires of several independent parts that needs communication between them. Everything is self-contained, and it matches somewhat the advantages of microservices.

Design Goals

  • Modularity:

    • Components should be self-contained (as possible)
    • Communication relations between components should be specifically defined
    • Components should be mockable. This is rather important for measurements and testing.
  • Single responsibility:

    • It is easier to isolate problems
    • Minimal sharing when unavoidable
  • Debuggeability

    • Easy to track workflow
    • Easy to test
    • Easy to measure
    • Asynchronous Communication