Reputation: 2363
I'm working on a library management system
in Java.
Now I finished it, but I don't use and thread and multi-hreading concepts on it.
Where should I use multi-threading on this particular program?
My program has 2 mode for login:
In administration mode, the add/remove/change and reporting from books and users is doable.
In user mode, user can see all books and they borrowed status and can select a book and borrow its favorite book if it is not borrowed.
Where should i use it?
Upvotes: 1
Views: 903
Reputation: 1467
You should not use multi-threading if you don't need it. As you write you are finished with your application. If it works as needed and your user can find and borrow books there is no need to add multi-threading.
Upvotes: 2