Package | Description |
---|---|
io.undertow.conduits | |
io.undertow.protocols.ssl | |
io.undertow.server | |
io.undertow.server.handlers.encoding | |
io.undertow.server.protocol.ajp | |
org.xnio |
The main API package for XNIO.
|
org.xnio.conduits |
The XNIO conduit SPI.
|
Modifier and Type | Class and Description |
---|---|
class |
BrokenStreamSourceConduit |
class |
BytesReceivedStreamSourceConduit |
class |
ChunkedStreamSourceConduit
Channel to de-chunkify data
|
class |
DebuggingStreamSourceConduit
Conduit that saves all the data that is written through it and can dump it to the console
|
class |
EmptyStreamSourceConduit
A stream source conduit which is always empty.
|
class |
FinishableStreamSourceConduit
A conduit that calls a finish listener when there is no data left in the underlying conduit.
|
class |
FixedLengthStreamSourceConduit
A channel which reads data of a fixed length and calls a finish listener.
|
class |
GzipStreamSourceConduit |
class |
IdleTimeoutConduit
Conduit that adds support to close a channel once for a specified time no
reads and no writes were performed.
|
class |
InflatingStreamSourceConduit |
class |
ReadDataStreamSourceConduit |
class |
ReadTimeoutStreamSourceConduit
Wrapper for read timeout.
|
Modifier and Type | Field and Description |
---|---|
static ConduitWrapper<StreamSourceConduit> |
InflatingStreamSourceConduit.WRAPPER |
static ConduitWrapper<StreamSourceConduit> |
GzipStreamSourceConduit.WRAPPER |
Modifier and Type | Class and Description |
---|---|
class |
SslConduit |
Modifier and Type | Field and Description |
---|---|
protected StreamSourceConduit |
AbstractServerConnection.originalSourceConduit |
Modifier and Type | Method and Description |
---|---|
StreamSourceConduit |
AbstractServerConnection.getOriginalSourceConduit() |
protected static StreamSourceConduit |
AbstractServerConnection.source(AbstractServerConnection.ConduitState state) |
Modifier and Type | Method and Description |
---|---|
HttpServerExchange |
HttpServerExchange.addRequestWrapper(ConduitWrapper<StreamSourceConduit> wrapper)
Adds a
ConduitWrapper to the request wrapper chain. |
Modifier and Type | Method and Description |
---|---|
RequestEncodingHandler |
RequestEncodingHandler.addEncoding(String name,
ConduitWrapper<StreamSourceConduit> wrapper) |
Modifier and Type | Class and Description |
---|---|
class |
AjpServerRequestConduit
Underlying AJP request channel.
|
Constructor and Description |
---|
AjpServerRequestConduit(StreamSourceConduit delegate,
HttpServerExchange exchange,
io.undertow.server.protocol.ajp.AjpServerResponseConduit ajpResponseConduit,
Long size,
ConduitListener<? super AjpServerRequestConduit> finishListener) |
Modifier and Type | Method and Description |
---|---|
protected void |
StreamConnection.setSourceConduit(StreamSourceConduit conduit)
Set the source conduit for this channel.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractStreamSourceConduit<D extends StreamSourceConduit>
An abstract base class for filtering stream source conduits.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractStreamSourceConduit<D extends StreamSourceConduit>
An abstract base class for filtering stream source conduits.
|
class |
BlockingStreamSourceConduit
A stream source conduit which can switch into and out of blocking mode.
|
class |
BufferedStreamSourceConduit
A stream source conduit which buffers input.
|
class |
MessageStreamSourceConduit
A stream source conduit which reads stream data from messages.
|
class |
PushBackStreamSourceConduit
A stream source conduit which allows buffers to be "pushed back" to the head of the stream.
|
class |
StreamSourceChannelWrappingConduit
A conduit which wraps a channel, for compatibility.
|
class |
SynchronizedStreamSourceConduit
A synchronized stream source conduit.
|
Modifier and Type | Method and Description |
---|---|
StreamSourceConduit |
ConduitStreamSourceChannel.getConduit()
Get the underlying conduit for this channel.
|
Modifier and Type | Method and Description |
---|---|
static long |
Conduits.drain(StreamSourceConduit conduit,
long count)
Attempt to drain the given number of bytes from the stream source conduit.
|
void |
ConduitStreamSourceChannel.setConduit(StreamSourceConduit conduit)
Set the underlying conduit for this channel.
|
static long |
Conduits.transfer(StreamSourceConduit source,
long count,
ByteBuffer throughBuffer,
WritableByteChannel sink)
Platform-independent channel-to-channel transfer method.
|
Copyright © 2017 JBoss by Red Hat. All rights reserved.