-
- All Superinterfaces:
Flow.Publisher<DataChunk>
,Multi<DataChunk>
,Subscribable<DataChunk>
- All Known Implementing Classes:
MessageBodyReadableContent
@Deprecated(since="2.0.0") public interface Content extends Multi<DataChunk>
Deprecated.useio.helidon.media.common.MessageBodyReadableContent
insteadRepresents an HTTP entity as amulti
ofchunks
with specific features.Default publisher contract
Default publisher accepts only single subscriber. Other subscribers receivesonError()
.DataChunk
provided byonNext()
method must be consumed in this method call. Buffer can be reused by network infrastructure as soon asonNext()
method returns. This behavior can be inconvenient yet it helps to provide excellent performance.Publisher Overwrite.
It is possible to modify contract of the original publisher by registration of a new publisher usingregisterFilter(Function)
method. It can be used to wrap or replace previously registered (or default) publisher.Entity Readers
It is possible to register function to convert publisher toSingle
of a single entity usingregisterReader(Class, Reader)
orregisterReader(Predicate, Reader)
methods. It is then possible to useas(Class)
method to obtain such entity.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description <T> Single<T>
as(Class<T> type)
Deprecated.Consumes and converts the request content into a completion stage of the requested type.void
registerFilter(Function<Flow.Publisher<DataChunk>,Flow.Publisher<DataChunk>> function)
Deprecated.since 2.0.0, useio.helidon.media.common.MessageBodyReaderContext.registerFilter
<T> void
registerReader(Class<T> type, Reader<T> reader)
Deprecated.since 2.0.0, useio.helidon.media.common.MessageBodyReaderContext.registerReader
<T> void
registerReader(Predicate<Class<?>> predicate, Reader<T> reader)
Deprecated.since 2.0.0, useio.helidon.media.common.MessageBodyReaderContext.registerReader
void
subscribe(Flow.Subscriber<? super DataChunk> subscriber)
Deprecated.If possible, adds the given Subscriber to this publisher.-
Methods inherited from interface io.helidon.common.reactive.Multi
collect, collect, collectList, collectStream, compose, defaultIfEmpty, defaultIfEmpty, distinct, dropWhile, filter, first, flatMap, flatMap, flatMapCompletionStage, flatMapIterable, flatMapIterable, flatMapOptional, forEach, ifEmpty, ignoreElements, limit, log, log, log, log, map, observeOn, observeOn, onCancel, onComplete, onCompleteResume, onCompleteResumeWith, onError, onErrorResume, onErrorResumeWith, onTerminate, peek, reduce, reduce, retry, retry, retryWhen, skip, switchIfEmpty, takeUntil, takeWhile, timeout, timeout, to
-
Methods inherited from interface io.helidon.common.reactive.Subscribable
subscribe, subscribe, subscribe, subscribe
-
-
-
-
Method Detail
-
subscribe
void subscribe(Flow.Subscriber<? super DataChunk> subscriber)
Deprecated.If possible, adds the given Subscriber to this publisher. This publisher is effectively either the original publisher or the last publisher registered by the methodregisterFilter(Function)
.Note that the original publisher allows only a single subscriber and requires the passed
DataChunk
in theFlow.Subscriber.onNext(Object)
call to be consumed before the method completes as specified by theDefault Publisher Contract
.- Specified by:
subscribe
in interfaceFlow.Publisher<DataChunk>
- Parameters:
subscriber
- the subscriber- Throws:
NullPointerException
- if subscriber is null
-
registerFilter
@Deprecated(since="2.0.0") void registerFilter(Function<Flow.Publisher<DataChunk>,Flow.Publisher<DataChunk>> function)
Deprecated.since 2.0.0, useio.helidon.media.common.MessageBodyReaderContext.registerFilter
Registers a filter that allows a control of the original publisher.The provided function is evaluated upon calling either of
subscribe(Flow.Subscriber)
oras(Class)
. The first evaluation of the function transforms the original publisher to a new publisher. Any subsequent evaluation receives the publisher transformed by the last previously registered filter. It is up to the implementor of the given function to respect the contract of both the original publisher and the previously registered ones.- Parameters:
function
- a function that transforms a given publisher (that is either the original publisher or the publisher transformed by the last previously registered filter).
-
registerReader
@Deprecated(since="2.0.0") <T> void registerReader(Class<T> type, Reader<T> reader)
Deprecated.since 2.0.0, useio.helidon.media.common.MessageBodyReaderContext.registerReader
Registers a reader for a later use with an appropriateas(Class)
method call.The reader must transform the published byte buffers into a completion stage of the requested type.
Upon calling
as(Class)
a matching reader is searched in the same order as the readers were registered. If no matching reader is found, or when the function throws an exception, the resulting completion stage ends exceptionally.- Type Parameters:
T
- the requested type- Parameters:
type
- the requested type the completion stage is be associated with.reader
- the reader as a function that transforms a publisher into completion stage. If an exception is thrown, the resulting completion stage ofas(Class)
method call ends exceptionally.
-
registerReader
@Deprecated(since="2.0.0") <T> void registerReader(Predicate<Class<?>> predicate, Reader<T> reader)
Deprecated.since 2.0.0, useio.helidon.media.common.MessageBodyReaderContext.registerReader
Registers a reader for a later use with an appropriateas(Class)
method call.The reader must transform the published byte buffers into a completion stage of the requested type.
Upon calling
as(Class)
a matching reader is searched in the same order as the readers were registered. If no matching reader is found or when the predicate throws an exception, or when the function throws an exception, the resulting completion stage ends exceptionally.- Type Parameters:
T
- the requested type- Parameters:
predicate
- the predicate that determines whether the registered reader can handle the requested type. If an exception is thrown, the resulting completion stage ofas(Class)
method call ends exceptionally.reader
- the reader as a function that transforms a publisher into completion stage. If an exception is thrown, the resulting completion stage ofas(Class)
method call ends exceptionally.
-
as
<T> Single<T> as(Class<T> type)
Deprecated.Consumes and converts the request content into a completion stage of the requested type.The conversion requires an appropriate reader to be already registered (see
registerReader(Predicate, Reader)
). If no such reader is found, the resulting completion stage ends exceptionally.Any callback related to the returned value, should not be blocking. Blocking operation could cause deadlock. If you need to use blocking API such as
InputStream
it is highly recommended to do so out of the scope of reactive chain, or to use methods likeCompletionStage.thenAcceptAsync(Consumer, Executor)
.- Type Parameters:
T
- the requested type- Parameters:
type
- the requested type class- Returns:
- a completion stage of the requested type
-
-