Sajad
Sajad

Reputation: 2363

Using Multi-threading on a library management system

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:

  1. administration
  2. User

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

Answers (1)

Johnny Graber
Johnny Graber

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

Related Questions