C J P W 
All Classes All Packages

C

com.github.jinahya.springframework.core.io.buffer - package com.github.jinahya.springframework.core.io.buffer
 
com.github.jinahya.springframework.web.reactive.function.client.webclient - package com.github.jinahya.springframework.web.reactive.function.client.webclient
 

J

JinahyaDataBufferUtils - Class in com.github.jinahya.springframework.core.io.buffer
A utility class for DataBuffer class and DataBufferUtils class.
JinahyaResponseSpecUtils - Class in com.github.jinahya.springframework.web.reactive.function.client.webclient
Utilities for WebClient.ResponseSpec.

P

pipeAndAccept(Publisher<DataBuffer>, Executor, BiConsumer<? super ReadableByteChannel, ? super U>, Supplier<? extends U>) - Static method in class com.github.jinahya.springframework.core.io.buffer.JinahyaDataBufferUtils
Pipes given stream of data buffers and accepts the source of the pipe, along with an argument from specified supplier, to specified consumer.
pipeAndAccept(Publisher<DataBuffer>, Executor, Consumer<? super ReadableByteChannel>) - Static method in class com.github.jinahya.springframework.core.io.buffer.JinahyaDataBufferUtils
Pipes given stream of data buffers and accepts the source of the pipe to specified consumer.
pipeAndAccept(Publisher<DataBuffer>, BiConsumer<? super ReadableByteChannel, ? super U>, Supplier<? extends U>) - Static method in class com.github.jinahya.springframework.core.io.buffer.JinahyaDataBufferUtils
Pipes given stream of data buffers and accepts the source of the pipe, along with an argument from specified supplier, to specified consumer.
pipeAndAccept(Publisher<DataBuffer>, Consumer<? super ReadableByteChannel>) - Static method in class com.github.jinahya.springframework.core.io.buffer.JinahyaDataBufferUtils
Pipes given stream of data buffers and accepts the source of the pipe to specified consumer.
pipeAndApply(Publisher<DataBuffer>, Executor, BiFunction<? super ReadableByteChannel, ? super U, ? extends R>, Supplier<? extends U>) - Static method in class com.github.jinahya.springframework.core.io.buffer.JinahyaDataBufferUtils
Pipes given stream of data buffers and return the result of the function applied with the source of the pipe and an argument from specified supplier.
pipeAndApply(Publisher<DataBuffer>, Executor, Function<? super ReadableByteChannel, ? extends R>) - Static method in class com.github.jinahya.springframework.core.io.buffer.JinahyaDataBufferUtils
Pipes given stream of data buffers and returns the result of specified function applied with the source of the pipe.
pipeAndApply(Publisher<DataBuffer>, BiFunction<? super ReadableByteChannel, ? super U, ? extends R>, Supplier<? extends U>) - Static method in class com.github.jinahya.springframework.core.io.buffer.JinahyaDataBufferUtils
Pipes given stream of data buffers and returns the result of specified function applied with the source of the pipe and a second argument from specified supplier.
pipeAndApply(Publisher<DataBuffer>, Function<? super ReadableByteChannel, ? extends R>) - Static method in class com.github.jinahya.springframework.core.io.buffer.JinahyaDataBufferUtils
Pipes given stream of data buffers and returns the result of specified function applied with the source of the pipe.

W

writeAndAccept(Publisher<DataBuffer>, Path, BiConsumer<? super Path, ? super U>, Supplier<? extends U>) - Static method in class com.github.jinahya.springframework.core.io.buffer.JinahyaDataBufferUtils
Writes given stream of data buffers to specified file and accepts the file, along with an argument supplied by specified supplier, to specified consumer.
writeAndAccept(Publisher<DataBuffer>, Path, Consumer<? super Path>) - Static method in class com.github.jinahya.springframework.core.io.buffer.JinahyaDataBufferUtils
Writes given stream of data buffers to specified file and accepts the file to specified consumer.
writeAndApply(Publisher<DataBuffer>, Path, BiFunction<? super Path, ? super U, ? extends R>, Supplier<? extends U>) - Static method in class com.github.jinahya.springframework.core.io.buffer.JinahyaDataBufferUtils
Writes given stream of data buffers to specified file and returns the result of specified function applied with the file along with an argument supplied by specified supplier.
writeAndApply(Publisher<DataBuffer>, Path, Function<? super Path, ? extends R>) - Static method in class com.github.jinahya.springframework.core.io.buffer.JinahyaDataBufferUtils
Write given stream of data buffers to the specified file and returns the result of specified function applied with the file.
writeBodyToFileAndAccept(WebClient.ResponseSpec, Path, BiConsumer<? super Path, ? super U>, Supplier<? extends U>) - Static method in class com.github.jinahya.springframework.web.reactive.function.client.webclient.JinahyaResponseSpecUtils
Writes given response spec's body to specified file and accepts the file, along with an argument supplied by specified supplier, to specified consumer.
writeBodyToFileAndAccept(WebClient.ResponseSpec, Path, Consumer<? super Path>) - Static method in class com.github.jinahya.springframework.web.reactive.function.client.webclient.JinahyaResponseSpecUtils
Writes given response spec's body to specified file and accepts the file to specified consumer.
writeBodyToFileAndApply(WebClient.ResponseSpec, Path, BiFunction<? super Path, ? super U, ? extends R>, Supplier<? extends U>) - Static method in class com.github.jinahya.springframework.web.reactive.function.client.webclient.JinahyaResponseSpecUtils
Writes given response spec's body to specified file and returns the result of specified function applied with the file along with an argument supplied by specified supplier.
writeBodyToFileAndApply(WebClient.ResponseSpec, Path, Function<? super Path, ? extends R>) - Static method in class com.github.jinahya.springframework.web.reactive.function.client.webclient.JinahyaResponseSpecUtils
Writes given response spec's body to specified file and returns the result of specified function applied with the file.
writeBodyToTempFileAndAccept(WebClient.ResponseSpec, BiConsumer<? super ReadableByteChannel, ? super U>, Supplier<? extends U>) - Static method in class com.github.jinahya.springframework.web.reactive.function.client.webclient.JinahyaResponseSpecUtils
Writes given response spec's body to a temporary path and accepts a readable bytes channel from the file, along with an argument supplied by specified supplier, to specified consumer.
writeBodyToTempFileAndAccept(WebClient.ResponseSpec, Consumer<? super ReadableByteChannel>) - Static method in class com.github.jinahya.springframework.web.reactive.function.client.webclient.JinahyaResponseSpecUtils
Writes given response spec's body to a temporary file and accepts a readable byte channel to specified consumer.
writeBodyToTempFileAndApply(WebClient.ResponseSpec, BiFunction<? super ReadableByteChannel, ? super U, ? extends R>, Supplier<? extends U>) - Static method in class com.github.jinahya.springframework.web.reactive.function.client.webclient.JinahyaResponseSpecUtils
Writes given response spec's body to a temporary path and returns the result of specified path function applied with a readable byte channel for the file and an argument supplied by specified argument supplier.
writeBodyToTempFileAndApply(WebClient.ResponseSpec, Function<? super ReadableByteChannel, ? extends R>) - Static method in class com.github.jinahya.springframework.web.reactive.function.client.webclient.JinahyaResponseSpecUtils
Writes given response spec's body to a temporary file and returns the result of specified function applied with a readable byte channel for the file.
writeToTempFileAndAccept(Publisher<DataBuffer>, BiConsumer<? super ReadableByteChannel, ? super U>, Supplier<? extends U>) - Static method in class com.github.jinahya.springframework.core.io.buffer.JinahyaDataBufferUtils
Writes given stream of data buffers to a temporary path and accepts a readable bytes channel from the file, along with an argument supplied by specified supplier, to specified consumer.
writeToTempFileAndAccept(Publisher<DataBuffer>, Consumer<? super ReadableByteChannel>) - Static method in class com.github.jinahya.springframework.core.io.buffer.JinahyaDataBufferUtils
Writes given stream of data buffers to a temporary file and accepts a readable byte channel to specified consumer.
writeToTempFileAndApply(Publisher<DataBuffer>, BiFunction<? super ReadableByteChannel, ? super U, ? extends R>, Supplier<? extends U>) - Static method in class com.github.jinahya.springframework.core.io.buffer.JinahyaDataBufferUtils
Writes given stream of data buffers to a temporary path and returns the result of specified path function applied with a readable byte channel for the file and an argument supplied by specified argument supplier.
writeToTempFileAndApply(Publisher<DataBuffer>, Function<? super ReadableByteChannel, ? extends R>) - Static method in class com.github.jinahya.springframework.core.io.buffer.JinahyaDataBufferUtils
Writes given stream of data buffers to a temporary file and returns the result of specified function applied with a readable byte channel for the file.
C J P W 
All Classes All Packages