NanoHttpd / nanohttpd

Tiny, easily embeddable HTTP server in Java.
http://nanohttpd.org
BSD 3-Clause "New" or "Revised" License
6.94k stars 1.69k forks source link

Is the library async #594

Closed BlueTree242 closed 3 years ago

BlueTree242 commented 3 years ago

If there is a request that is taking time to finish, and another app doing another request, will the other request take long time to get response? I couldnt test so im asking

NoahAndrews commented 3 years ago

Yes, it can handle multiple requests at once. If I recall correctly every incoming request is given a dedicated thread.

BlueTree242 commented 3 years ago

Thx