- java.lang.Object
-
- io.helidon.media.common.ReadableByteChannelPublisher
-
- All Implemented Interfaces:
Flow.Publisher<DataChunk>
@Deprecated(since="2.0.0", forRemoval=true) public class ReadableByteChannelPublisher extends Object implements Flow.Publisher<DataChunk>
Deprecated, for removal: This API element is subject to removal in a future version.Will be removed. Please useIoMulti.multiFromByteChannel(java.nio.channels.ReadableByteChannel)
insteadPublish a channel content to a singlesubscriber
. If channel doesn't offer data, then it is requested again after some period defined be retry schema.Only first subscriber is accepted.
-
-
Constructor Summary
Constructors Constructor Description ReadableByteChannelPublisher(ReadableByteChannel channel, RetrySchema retrySchema)
Deprecated, for removal: This API element is subject to removal in a future version.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
subscribe(Flow.Subscriber<? super DataChunk> subscriberParam)
Deprecated, for removal: This API element is subject to removal in a future version.
-
-
-
Constructor Detail
-
ReadableByteChannelPublisher
@Deprecated(since="2.0.0", forRemoval=true) public ReadableByteChannelPublisher(ReadableByteChannel channel, RetrySchema retrySchema)
Deprecated, for removal: This API element is subject to removal in a future version.Creates new instance.- Parameters:
channel
- a channel to read and publishretrySchema
- a retry schema functional interface used in case, that channel read retrieved zero bytes.
-
-
Method Detail
-
subscribe
public void subscribe(Flow.Subscriber<? super DataChunk> subscriberParam)
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
subscribe
in interfaceFlow.Publisher<DataChunk>
-
-