https://github.com/somodidenise/queue-management-system
A Java-based queue management system with real-time simulation and multithreaded client handling.
https://github.com/somodidenise/queue-management-system
desktop-appl gui java maven multithreading oop queue-management simulation swing
Last synced: 7 months ago
JSON representation
A Java-based queue management system with real-time simulation and multithreaded client handling.
- Host: GitHub
- URL: https://github.com/somodidenise/queue-management-system
- Owner: somodidenise
- License: mit
- Created: 2025-03-12T07:28:59.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-03-14T20:26:06.000Z (7 months ago)
- Last Synced: 2025-03-14T21:31:38.166Z (7 months ago)
- Topics: desktop-appl, gui, java, maven, multithreading, oop, queue-management, simulation, swing
- Language: Java
- Homepage:
- Size: 324 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Queue Management System 🎛️
A Java desktop application that simulates real-time queue management for servicing clients. The system allows you to configure simulation parameters and choose different allocation strategies to optimize client servicing.
## 🚀 Features
- Real-time simulation of client queues
- Configurable number of clients, queues, arrival times, and service times
- Two dynamic allocation strategies:
- **Shortest Queue**
- **Shortest Time**
- Graphical representation of queues and waiting clients
- Displays average waiting time, service time, and peak hours
- Input validation to ensure accurate simulation data## 🛠️ Technologies Used
- Java (Swing for GUI)
- OOP, Multithreading
- Maven (project build and dependency management)
- IntelliJ IDEA## 📂 Project Structure
```
Queue-Management-System/
├── src/
│ ├── main/
│ │ ├── java/
│ │ │ ├── BusinessLogic/ # Queue management, strategies
│ │ │ ├── GUI/ # UI and controller
│ │ │ └── Models/ # Client, Queue definitions
│ ├── test/ # Unit tests
├── resources/ # Images (open.png, close.png, stickman.png)
├── target/ # Maven build output (ignored)
├── .gitignore # Git ignore rules
├── LICENSE # Project license (MIT)
├── pom.xml # Maven configuration
├── README.md # Project documentation
```## ⚙️ How to Run the Project
1. Clone the repository:
```
git clone https://github.com/somodidenise/Queue-Management-System.git
```
2. Open the project in IntelliJ IDEA or another Java IDE.
3. Build the project using Maven:
```
mvn clean install
```
4. Run the Main class from the GUI package to launch the application.## 📜 License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.