https://github.com/stemmlerjs/java-help-desk
This is an experiment I put together when I was exploring Concurrency and Serialization with Java.
https://github.com/stemmlerjs/java-help-desk
Last synced: 2 months ago
JSON representation
This is an experiment I put together when I was exploring Concurrency and Serialization with Java.
- Host: GitHub
- URL: https://github.com/stemmlerjs/java-help-desk
- Owner: stemmlerjs
- Created: 2016-01-20T03:16:02.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-20T03:41:10.000Z (over 9 years ago)
- Last Synced: 2025-04-12T02:09:32.256Z (2 months ago)
- Language: Java
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Java-Helpdesk
This was an experiment I wrote using my custom link-list class, Brock University's BasicIO and Media JARs
to see how Concurrency and Serialization works in Java. This was completed in May 2014.##### What Does It Do?
This is a helpdesk and client application where two screens are visible. On one screen, you can "request" help via messages and then send them off to the help desk. The messages get put into a Buffered Queue with a maximum size of 5. If there is a message to be exited from the queue, it's displayed on the Help Desk screen where the user can acknowledge the message.Upon starting the program, you will be asked to load a text file if any, this will be used as the input file for any previous serialized messages.
Upon closing the program, you will be asked to supply a text file to serialize any messages not exited from the queue to.