Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 848 Bytes

README.md

File metadata and controls

28 lines (22 loc) · 848 Bytes

Akka.Restaurant

What is this?

This project is to help explain what an actor system is and how to build one with Akka Dotnet. We're going to create an akka dotnet restaurant that will mimic the flow of a sit down restaurant.

Requirements

Create an application that mimics the flow of a restaurant.

Workflow

  1. Customer enters restaurant
  2. Hostess assigns an empty table to the customers
  3. Server gets customer’s drink order
  4. Server delivers drinks
  5. Server gets customer’s food order
  6. Server delivers food order to cooks
  7. Cooks prepare food
  8. Cooks alert server that food is ready
  9. Server delivers food to customers
  10. Customer’s eat
  11. Server delivers check
  12. Customer’s pay for check
  13. Server delivers receipt
  14. Customer leaves
  15. Server cleans table
  16. Server alerts hostess that table is available