No need to pass the socket into the asyncDispatch() call. It will always have been set beforehand.
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@
1136090 13f79535-47bb-0310-9956-
ffa450edef68
}
- public SocketState asyncDispatch(SocketWrapper<Long> socket,
- SocketStatus status) {
-
- // Setting up the socket
- this.socket = socket;
+ public SocketState asyncDispatch(SocketStatus status) {
RequestInfo rp = request.getRequestProcessor();
try {
if (processor != null) {
// Call the appropriate event
try {
- state = processor.asyncDispatch(socket, status);
+ state = processor.asyncDispatch(status);
}
// Future developers: if you discover any other
// rare-but-nonfatal exceptions, catch them here, and log as