Given the following code:
What should you do at line 1 to enable this servlet receive request data without blocking?
Use a Runnable instance with the start () method of AsyncContext.
Define a ReadListener and assign it to the request input stream.
Create a Callable class and delegate this operation to a ManagedExecutorService by using the dispatch method of AsyncContext.
Define an AsyncListener and assign it to the AsyncContext object.
Submit