Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor changes to asciidocs #25

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/asciidoc/built-in-handlers.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

=== Built in Handlers

Undertow contains a number of build in handlers that provide common functionality. Most of these handlers can be created
Undertow contains a number of built in handlers that provide common functionality. Most of these handlers can be created
using static methods on the `io.undertow.Handlers` utility class.

The most common of these handlers are detailed below.
Expand Down Expand Up @@ -41,7 +41,7 @@ There are multiple handlers that deal with requests that expect a HTTP 100 Conti
Handler will automatically send a continue response for requests that require it the first time a handler attempts to
read the request body.
The HTTP Continue Accepting handler will immediately either send a 100 or a 417 response depending on the value of a
predicate. If no predicate is supplied it all immediately accept all requests. If a 417 response code is send the
predicate. If no predicate is supplied it will immediately accept all requests. If a 417 response code is sent the
next handler is not invoked and the request will be changed to be non persistent.

Websocket::
Expand Down
4 changes: 2 additions & 2 deletions src/main/asciidoc/undertow-handler-guide.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -100,14 +100,14 @@ public void handleRequest(final HttpServerExchange exchange) throws Exception {
}
----

Because exchange is not actually dispatched until the call stack returns you can be sure that more that one thread is
Because exchange is not actually dispatched until the call stack returns you can be sure that more than one thread is
never active in an exchange at once. The exchange is not thread safe, however it can be passed between multiple threads
as long as both threads do not attempt to modify it at once, and there is a happens before action (such as a thread pool
dispatch) in between the first and second thread access.

==== Ending the exchange

As mentioned above, and exchange is considered done once both the request and response channels have been closed and flushed.
As mentioned above, an exchange is considered done once both the request and response channels have been closed and flushed.

There are two ways to end an exchange, either by fully reading the request channel, and calling `shutdownWrites()` on the
response channel and then flushing it, or by calling `HttpServerExchange.endExchange()`. When `endExchange()` is called
Expand Down