Top Description Fields Constructors Methods
org.apache.hc.core5.reactive

public final Class ReactiveServerExchangeHandler

extends Object
implements AsyncServerExchangeHandler
Class Inheritance
All Implemented Interfaces
org.apache.hc.core5.http.nio.AsyncServerExchangeHandler, org.apache.hc.core5.http.nio.AsyncDataExchangeHandler, org.apache.hc.core5.http.nio.AsyncDataProducer, org.apache.hc.core5.http.nio.ResourceHolder, org.apache.hc.core5.http.nio.AsyncDataConsumer
Imports
java.io.IOException, java.nio.ByteBuffer, java.util.List, java.util.concurrent.atomic.AtomicReference, org.apache.hc.core5.function.Callback, org.apache.hc.core5.http.EntityDetails, .Header, .HttpException, .HttpRequest, org.apache.hc.core5.http.nio.AsyncServerExchangeHandler, .CapacityChannel, .DataStreamChannel, .ResponseChannel, org.apache.hc.core5.http.protocol.HttpContext, org.reactivestreams.Publisher

An implementation of AsyncServerExchangeHandler designed to work with reactive streams.
Since
5.0

Field Summary

Modifier and TypeField and Description
private volatile DataStreamChannel
private final ReactiveDataConsumer
private final ReactiveRequestProcessor
private final AtomicReference<ReactiveDataProducer>

Constructor Summary

AccessConstructor and Description
public
ReactiveServerExchangeHandler(final ReactiveRequestProcessor
the ReactiveRequestProcessor instance to invoke when the request is ready to be handled.
requestProcessor
)

Creates a ReactiveServerExchangeHandler.

Method Summary

Modifier and TypeMethod and Description
public int
available()

Implements org.apache.hc.core5.http.nio.AsyncDataProducer.available.

Returns the number of bytes immediately available for output.
public void
consume(final ByteBuffer
data source.
src
)

Implements org.apache.hc.core5.http.nio.AsyncDataConsumer.consume.

Triggered to pass incoming data to the data consumer.
public void
failed(final Exception
the cause of the failure.
cause
)

Implements org.apache.hc.core5.http.nio.AsyncDataExchangeHandler.failed.

Triggered to signal a failure in data processing.
public void
handleRequest(final HttpRequest
the actual request.
request
,
final EntityDetails
the request entity details or null if the request does not enclose an entity.
entityDetails
,
final ResponseChannel
the response channel.
responseChannel
,
final HttpContext
the actual execution context.
context
)

Implements org.apache.hc.core5.http.nio.AsyncServerExchangeHandler.handleRequest.

Processes the actual HTTP request.
public void
produce(final DataStreamChannel
the data channel capable to accepting more data.
channel
)

Implements org.apache.hc.core5.http.nio.AsyncDataProducer.produce.

Triggered to signal the ability of the underlying data channel to accept more data.
public void
public void
streamEnd(final List<? extends Header>
data stream trailers.
trailers
)

Implements org.apache.hc.core5.http.nio.AsyncDataConsumer.streamEnd.

Triggered to signal termination of the data stream.
public void
updateCapacity(final CapacityChannel
the channel for capacity updates.
capacityChannel
)

Implements org.apache.hc.core5.http.nio.AsyncDataConsumer.updateCapacity.

Triggered to signal ability of the underlying data stream to receive data capacity update.
Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Field Detail

channelback to summary
private volatile DataStreamChannel channel
requestConsumerback to summary
private final ReactiveDataConsumer requestConsumer
requestProcessorback to summary
private final ReactiveRequestProcessor requestProcessor
responseProducerback to summary
private final AtomicReference<ReactiveDataProducer> responseProducer

Constructor Detail

ReactiveServerExchangeHandlerback to summary
public ReactiveServerExchangeHandler(final ReactiveRequestProcessor requestProcessor)

Creates a ReactiveServerExchangeHandler.

Parameters
requestProcessor:ReactiveRequestProcessor

the ReactiveRequestProcessor instance to invoke when the request is ready to be handled.

Method Detail

availableback to summary
public int available()

Implements org.apache.hc.core5.http.nio.AsyncDataProducer.available.

Doc from org.apache.hc.core5.http.nio.AsyncDataProducer.available.

Returns the number of bytes immediately available for output. This method can be used as a hint to control output events of the underlying I/O session.

Returns:int

the number of bytes immediately available for output

Annotations
@Override
consumeback to summary
public void consume(final ByteBuffer src) throws IOException

Implements org.apache.hc.core5.http.nio.AsyncDataConsumer.consume.

Doc from org.apache.hc.core5.http.nio.AsyncDataConsumer.consume.

Triggered to pass incoming data to the data consumer. The consumer must consume the entire content of the data buffer. The consumer must stop incrementing its capacity on the capacity channel if it is unable to accept more data. Once the data consumer has handled accumulated data or allocated more intermediate storage it can update its capacity information on the capacity channel.

Parameters
src:ByteBuffer

data source.

Annotations
@Override
failedback to summary
public void failed(final Exception cause)

Implements org.apache.hc.core5.http.nio.AsyncDataExchangeHandler.failed.

Doc from org.apache.hc.core5.http.nio.AsyncDataExchangeHandler.failed.

Triggered to signal a failure in data processing.

Parameters
cause:Exception

the cause of the failure.

Annotations
@Override
handleRequestback to summary
public void handleRequest(final HttpRequest request, final EntityDetails entityDetails, final ResponseChannel responseChannel, final HttpContext context) throws HttpException, IOException

Implements org.apache.hc.core5.http.nio.AsyncServerExchangeHandler.handleRequest.

Doc from org.apache.hc.core5.http.nio.AsyncServerExchangeHandler.handleRequest.

Processes the actual HTTP request. The handler can choose to send response messages immediately inside the call or asynchronously at some later point.

Parameters
request:HttpRequest

the actual request.

entityDetails:EntityDetails

the request entity details or null if the request does not enclose an entity.

responseChannel:ResponseChannel

the response channel.

context:HttpContext

the actual execution context.

Annotations
@Override
produceback to summary
public void produce(final DataStreamChannel channel) throws IOException

Implements org.apache.hc.core5.http.nio.AsyncDataProducer.produce.

Doc from org.apache.hc.core5.http.nio.AsyncDataProducer.produce.

Triggered to signal the ability of the underlying data channel to accept more data. The data producer can choose to write data immediately inside the call or asynchronously at some later point.

Parameters
channel:DataStreamChannel

the data channel capable to accepting more data.

Annotations
@Override
releaseResourcesback to summary
public void releaseResources()

Implements org.apache.hc.core5.http.nio.ResourceHolder.releaseResources.

Annotations
@Override
streamEndback to summary
public void streamEnd(final List<? extends Header> trailers) throws HttpException, IOException

Implements org.apache.hc.core5.http.nio.AsyncDataConsumer.streamEnd.

Doc from org.apache.hc.core5.http.nio.AsyncDataConsumer.streamEnd.

Triggered to signal termination of the data stream.

Parameters
trailers:List<? extends Header>

data stream trailers.

Annotations
@Override
updateCapacityback to summary
public void updateCapacity(final CapacityChannel capacityChannel) throws IOException

Implements org.apache.hc.core5.http.nio.AsyncDataConsumer.updateCapacity.

Doc from org.apache.hc.core5.http.nio.AsyncDataConsumer.updateCapacity.

Triggered to signal ability of the underlying data stream to receive data capacity update. The data consumer can choose to write data immediately inside the call or asynchronously at some later point.

Parameters
capacityChannel:CapacityChannel

the channel for capacity updates.

Annotations
@Override