Class AsyncListenerWrapper
- java.lang.Object
-
- org.apache.felix.http.base.internal.jakartawrappers.AsyncListenerWrapper
-
- All Implemented Interfaces:
jakarta.servlet.AsyncListener,EventListener
public class AsyncListenerWrapper extends Object implements jakarta.servlet.AsyncListener
Async listener wrapper
-
-
Constructor Summary
Constructors Constructor Description AsyncListenerWrapper(javax.servlet.AsyncListener c)Create new listener
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonComplete(jakarta.servlet.AsyncEvent event)voidonError(jakarta.servlet.AsyncEvent event)voidonStartAsync(jakarta.servlet.AsyncEvent event)voidonTimeout(jakarta.servlet.AsyncEvent event)
-
-
-
Method Detail
-
onComplete
public void onComplete(jakarta.servlet.AsyncEvent event) throws IOException- Specified by:
onCompletein interfacejakarta.servlet.AsyncListener- Throws:
IOException
-
onTimeout
public void onTimeout(jakarta.servlet.AsyncEvent event) throws IOException- Specified by:
onTimeoutin interfacejakarta.servlet.AsyncListener- Throws:
IOException
-
onError
public void onError(jakarta.servlet.AsyncEvent event) throws IOException- Specified by:
onErrorin interfacejakarta.servlet.AsyncListener- Throws:
IOException
-
onStartAsync
public void onStartAsync(jakarta.servlet.AsyncEvent event) throws IOException- Specified by:
onStartAsyncin interfacejakarta.servlet.AsyncListener- Throws:
IOException
-
-