Uses of Class
com.mastfrog.acteur.ResponseWriter
Packages that use ResponseWriter
-
Uses of ResponseWriter in com.mastfrog.acteur
Methods in com.mastfrog.acteur with type parameters of type ResponseWriterModifier and TypeMethodDescriptionprotected final <T extends ResponseWriter>
ActeurActeur.setResponseWriter(Class<T> writerType) Set a response writer which can iteratively be called back until the response is completed.protected final <T extends ResponseWriter>
ActeurActeur.setResponseWriter(T writer) Set a response writer which can iteratively be called back until the response is completed.Methods in com.mastfrog.acteur with parameters of type ResponseWriterModifier and TypeMethodDescriptionabstract ResponseResponse.contentWriter(ResponseWriter writer) Set a ResponseWriter which will be called after headers are written and flushed to the socket; this will cause chunked encoding to be used; the ResponseWriter will be called back repeatedly to stream more of the response until it says that it is done.final ResponseResponse.setBodyWriter(ResponseWriter writer) Deprecated.use contentWriter() instead