mirror of
https://github.com/logos-co/Overwatch.git
synced 2025-01-22 12:29:00 +00:00
PingPong
This example project demonstrates how to set up a basic Overwatch application in Rust.
Behaviour
This project demonstrates a simple communication pattern between two services.
- Every second, the
Ping
service sends a message to thePong
service. - The
Pong
service receives the message and prints it to the console. Afterwards, it sends a message back to thePing
service. - The
Ping
service receives the message and prints it to the console.
Features
- Services: Shows how to define and register services within an Overwatch application.
- Message Passing: Demonstrates communication between services using the relay.
About
This project serves as a barebones template to get started with the Overwatch library. It provides the foundational structure for creating more complex applications.