This document introduces classes for asynchronous I/O in Servlet 3.0 without exposing low-level I/O details. New classes include ServletFuture, ServletAsyncHandler, ServletRequestChannel, and ServletResponseChannel. ServletRequestChannel allows asynchronous and synchronous read operations from the request body, while ServletResponseChannel allows write operations to the response. Examples demonstrate asynchronous and synchronous reads and writes, with the request automatically suspended for asynchronous operations.