Class GZIPEncodingInterceptor
java.lang.Object
org.jboss.resteasy.plugins.interceptors.GZIPEncodingInterceptor
- All Implemented Interfaces:
jakarta.ws.rs.ext.WriterInterceptor
,AsyncWriterInterceptor
@Provider
@Priority(4000)
public class GZIPEncodingInterceptor
extends Object
implements AsyncWriterInterceptor
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
static class
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
aroundWriteTo
(jakarta.ws.rs.ext.WriterInterceptorContext context) Interceptor method wrapping calls toAsyncMessageBodyWriter.asyncWriteTo(T, java.lang.Class<?>, java.lang.reflect.Type, java.lang.annotation.Annotation[], jakarta.ws.rs.core.MediaType, jakarta.ws.rs.core.MultivaluedMap<java.lang.String, java.lang.Object>, org.jboss.resteasy.spi.AsyncOutputStream)
method.
-
Constructor Details
-
GZIPEncodingInterceptor
public GZIPEncodingInterceptor()
-
-
Method Details
-
aroundWriteTo
public void aroundWriteTo(jakarta.ws.rs.ext.WriterInterceptorContext context) throws IOException, jakarta.ws.rs.WebApplicationException - Specified by:
aroundWriteTo
in interfacejakarta.ws.rs.ext.WriterInterceptor
- Throws:
IOException
jakarta.ws.rs.WebApplicationException
-
asyncAroundWriteTo
Description copied from interface:AsyncWriterInterceptor
Interceptor method wrapping calls toAsyncMessageBodyWriter.asyncWriteTo(T, java.lang.Class<?>, java.lang.reflect.Type, java.lang.annotation.Annotation[], jakarta.ws.rs.core.MediaType, jakarta.ws.rs.core.MultivaluedMap<java.lang.String, java.lang.Object>, org.jboss.resteasy.spi.AsyncOutputStream)
method. The parameters of the wrapped method called are available fromcontext
. Implementations of this method SHOULD explicitly callAsyncWriterInterceptorContext.asyncProceed()
to invoke the next interceptor in the chain, and ultimately the wrappedAsyncMessageBodyWriter.asyncWriteTo
method.- Specified by:
asyncAroundWriteTo
in interfaceAsyncWriterInterceptor
- Parameters:
context
- invocation context.- Returns:
- a
CompletionStage
indicating completion
-