Package org.apache.http.nio
Class ContentDecoderChannel
- java.lang.Object
-
- org.apache.http.nio.ContentDecoderChannel
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
,java.nio.channels.Channel
,java.nio.channels.ReadableByteChannel
public class ContentDecoderChannel extends java.lang.Object implements java.nio.channels.ReadableByteChannel
AReadableByteChannel
that delegates to aContentDecoder
. Attempts to close this channel are ignored, andisOpen()
always returnstrue
.- Since:
- 4.0
-
-
Constructor Summary
Constructors Constructor Description ContentDecoderChannel(ContentDecoder decoder)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
boolean
isOpen()
int
read(java.nio.ByteBuffer dst)
-
-
-
Constructor Detail
-
ContentDecoderChannel
public ContentDecoderChannel(ContentDecoder decoder)
-
-
Method Detail
-
read
public int read(java.nio.ByteBuffer dst) throws java.io.IOException
- Specified by:
read
in interfacejava.nio.channels.ReadableByteChannel
- 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
-
-