Class ResponseCachingSender
java.lang.Object
io.undertow.server.handlers.cache.ResponseCachingSender
- All Implemented Interfaces:
Sender
- Author:
- Stuart Douglas
-
Constructor Summary
ConstructorsConstructorDescriptionResponseCachingSender
(Sender delegate, DirectBufferCache.CacheEntry cacheEntry, long length) -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Closes this sender asynchronouslyvoid
close
(IoCallback callback) Closes this sender asynchronously.void
Write the given String using async IO, and ends the exchange when donevoid
send
(String data, IoCallback callback) Write the given String using async IO, and calls the given callback on completion or error.void
Write the given String using async IO, and ends the exchange when donevoid
send
(String data, Charset charset, IoCallback callback) Write the given String using async IO, and calls the given callback on completion or error.void
send
(ByteBuffer src) Write the given buffer using async IO, and ends the exchange when donevoid
send
(ByteBuffer[] srcs) Write the given buffers using async IO, and ends the exchange when donevoid
send
(ByteBuffer[] srcs, IoCallback callback) Write the given buffers using async IO, and calls the given callback on completion or error.void
send
(ByteBuffer src, IoCallback callback) Write the given buffer using async IO, and calls the given callback on completion or error.void
transferFrom
(FileChannel channel, IoCallback callback) Transfers all content from the specified file
-
Constructor Details
-
ResponseCachingSender
-
-
Method Details
-
send
Description copied from interface:Sender
Write the given buffer using async IO, and calls the given callback on completion or error. -
send
Description copied from interface:Sender
Write the given buffers using async IO, and calls the given callback on completion or error. -
send
Description copied from interface:Sender
Write the given buffer using async IO, and ends the exchange when done -
send
Description copied from interface:Sender
Write the given buffers using async IO, and ends the exchange when done -
send
Description copied from interface:Sender
Write the given String using async IO, and calls the given callback on completion or error.The CharSequence is encoded to UTF8
-
send
Description copied from interface:Sender
Write the given String using async IO, and calls the given callback on completion or error. -
send
Description copied from interface:Sender
Write the given String using async IO, and ends the exchange when doneThe CharSequence is encoded to UTF8
-
send
Description copied from interface:Sender
Write the given String using async IO, and ends the exchange when done -
transferFrom
Description copied from interface:Sender
Transfers all content from the specified file- Specified by:
transferFrom
in interfaceSender
- Parameters:
channel
- the file channel to transfercallback
- The callback
-
close
Description copied from interface:Sender
Closes this sender asynchronously. The given callback is notified on completion -
close
public void close()Description copied from interface:Sender
Closes this sender asynchronously
-