NanoHttpd / nanohttpd

Tiny, easily embeddable HTTP server in Java.

Home Page:http://nanohttpd.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is the library async

BlueTree242 opened this issue · comments

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

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

Thx