You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 31, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: src/ktt/lib/httpserver/SimpleHttpExchange.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@
11
11
12
12
/**
13
13
* <i>This class is a simplified implementation of {@link HttpExchange}</i>. <br>
14
-
* This class provides methods to process requests from the client and send a response back. <br><br>
14
+
* This class provides methods to process requests from the client and send a response back. The handler will keep executing until a response is sent.<br><br>
15
15
* Get/post type requests for <code>application/x-www-form-urlencoded</code> (default) will be a simple key/value map. <br>
16
16
* Get/post type requests for <code>multipart/form-data</code> will use an expanded map. <br>
Copy file name to clipboardExpand all lines: src/ktt/lib/httpserver/SimpleHttpHandler.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
importjava.io.IOException;
7
7
8
8
/**
9
-
* A simplified implementation of {@link HttpHandler}. It is used to process {@link SimpleHttpExchange}s.
9
+
* A simplified implementation of {@link HttpHandler}. It is used to process {@link SimpleHttpExchange}s. Each handler is its own thread and will not reveal any exceptions unless a try-catch within the handler is used.
0 commit comments