Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/christian80gabi/queueing
Client-Server queueing simulator
https://github.com/christian80gabi/queueing
Last synced: 25 days ago
JSON representation
Client-Server queueing simulator
- Host: GitHub
- URL: https://github.com/christian80gabi/queueing
- Owner: christian80gabi
- Created: 2024-06-17T17:17:47.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-06-19T19:16:22.000Z (5 months ago)
- Last Synced: 2024-06-20T08:35:07.198Z (5 months ago)
- Language: Kotlin
- Size: 105 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Queueing
A Client-Server queueing simulator with Kotlin### Scenario
- **client**: requesting for a party
- **server**: collecting the client request.
> **Conditions**:
> - if a _first client request_, initiate a party and awaiting others until a threshold met before a set time;
> - if not _first client request_, collect the request and awaiting others until a threshold is met before a set time;
> - else, if a threshold is met before a set time, start the initiated party;
> - else, if a threshold is never met before a set time, fill the bucket of clients with "bot clients" and start the initiated party.