Package org.apache.tomcat.util.buf
Interface ByteChunk.ByteOutputChannel
- Enclosing class:
- ByteChunk
public static interface ByteChunk.ByteOutputChannel
When we need more space we'll either grow the buffer ( up to the limit ) or send it to a channel. Same as
java.nio.channel.WritableByteChannel.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
realWriteBytes
(byte[] buf, int off, int len) Send the bytes ( usually the internal conversion buffer ).void
realWriteBytes
(ByteBuffer from) Send the bytes ( usually the internal conversion buffer ).
-
Method Details
-
realWriteBytes
Send the bytes ( usually the internal conversion buffer ). Expect 8k output if the buffer is full.- Parameters:
buf
- bytes that will be writtenoff
- offset in the bytes arraylen
- length that will be written- Throws:
IOException
- If an I/O occurs while writing the bytes
-
realWriteBytes
Send the bytes ( usually the internal conversion buffer ). Expect 8k output if the buffer is full.- Parameters:
from
- bytes that will be written- Throws:
IOException
- If an I/O occurs while writing the bytes
-