Interface H2StreamChannel
-
- All Superinterfaces:
Cancellable
,CapacityChannel
,DataStreamChannel
,StreamChannel<java.nio.ByteBuffer>
- All Known Implementing Classes:
AbstractH2StreamMultiplexer.H2StreamChannelImpl
interface H2StreamChannel extends DataStreamChannel, CapacityChannel, Cancellable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
push(java.util.List<Header> headers, AsyncPushProducer pushProducer)
void
submit(java.util.List<Header> headers, boolean endStream)
-
Methods inherited from interface org.apache.hc.core5.concurrent.Cancellable
cancel
-
Methods inherited from interface org.apache.hc.core5.http.nio.CapacityChannel
update
-
Methods inherited from interface org.apache.hc.core5.http.nio.DataStreamChannel
endStream, requestOutput, write
-
Methods inherited from interface org.apache.hc.core5.http.nio.StreamChannel
endStream
-
-
-
-
Method Detail
-
submit
void submit(java.util.List<Header> headers, boolean endStream) throws HttpException, java.io.IOException
- Throws:
HttpException
java.io.IOException
-
push
void push(java.util.List<Header> headers, AsyncPushProducer pushProducer) throws HttpException, java.io.IOException
- Throws:
HttpException
java.io.IOException
-
-