Uses of Interface
java.util.concurrent.Flow.Publisher
-
Packages that use Flow.Publisher Package Description java.util.concurrent Utility classes commonly useful in concurrent programming.jdk.incubator.http High level HTTP and WebSocket API -
-
Uses of Flow.Publisher in java.util.concurrent
Subinterfaces of Flow.Publisher in java.util.concurrent Modifier and Type Interface Description static interface
Flow.Processor<T,R>
A component that acts as both a Subscriber and Publisher.Classes in java.util.concurrent that implement Flow.Publisher Modifier and Type Class Description class
SubmissionPublisher<T>
AFlow.Publisher
that asynchronously issues submitted (non-null) items to current subscribers until it is closed. -
Uses of Flow.Publisher in jdk.incubator.http
Subinterfaces of Flow.Publisher in jdk.incubator.http Modifier and Type Interface Description static interface
HttpRequest.BodyPublisher
A Publisher which converts high level Java objects into flows of byte buffers suitable for sending as request bodies.Methods in jdk.incubator.http with parameters of type Flow.Publisher Modifier and Type Method Description static HttpRequest.BodyPublisher
HttpRequest.BodyPublisher. fromPublisher(Flow.Publisher<? extends ByteBuffer> publisher)
Returns a request body publisher whose body is retrieved from the givenFlow.Publisher
.static HttpRequest.BodyPublisher
HttpRequest.BodyPublisher. fromPublisher(Flow.Publisher<? extends ByteBuffer> publisher, long contentLength)
Returns a request body publisher whose body is retrieved from the givenFlow.Publisher
.
-