Package org.apache.http.nio
Class ContentEncoderChannel
- java.lang.Object
-
- org.apache.http.nio.ContentEncoderChannel
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
,java.nio.channels.Channel
,java.nio.channels.WritableByteChannel
public class ContentEncoderChannel extends java.lang.Object implements java.nio.channels.WritableByteChannel
AWritableByteChannel
that delegates to aContentEncoder
. Attempts to close this channel are ignored, andisOpen()
always returnstrue
.- Since:
- 4.0
-
-
Constructor Summary
Constructors Constructor Description ContentEncoderChannel(ContentEncoder contentEncoder)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
boolean
isOpen()
int
write(java.nio.ByteBuffer src)
-
-
-
Constructor Detail
-
ContentEncoderChannel
public ContentEncoderChannel(ContentEncoder contentEncoder)
-
-
Method Detail
-
write
public int write(java.nio.ByteBuffer src) throws java.io.IOException
- Specified by:
write
in interfacejava.nio.channels.WritableByteChannel
- Throws:
java.io.IOException
-
close
public void close()
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.nio.channels.Channel
- Specified by:
close
in interfacejava.io.Closeable
-
isOpen
public boolean isOpen()
- Specified by:
isOpen
in interfacejava.nio.channels.Channel
-
-