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