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