| Added Methods |
<any> join(<any>)
|
Return a new {@code DataBuffer} composed of the {@code dataBuffers} elements joined together. |
<any> readAsynchronousFileChannel(Callable<AsynchronousFileChannel>, long, DataBufferFactory, int)
|
Obtain a {@code AsynchronousFileChannel} from the given supplier, and read it into a
{@code Flux} of {@code DataBuffer}s, starting at the given position. |
<any> readAsynchronousFileChannel(Callable<AsynchronousFileChannel>, DataBufferFactory, int)
|
Obtain a {@code AsynchronousFileChannel} from the given supplier, and read it into a
{@code Flux} of {@code DataBuffer}s. |
<any> readByteChannel(Callable<ReadableByteChannel>, DataBufferFactory, int)
|
Obtain a ReadableByteChannel from the given supplier, and read it into a
{@code Flux} of {@code DataBuffer}s. |
<any> readInputStream(Callable<InputStream>, DataBufferFactory, int)
|
Obtain a InputStream from the given supplier, and read it into a {@code Flux} of
{@code DataBuffer}s. |
| Changed Methods |
<any> read(InputStream, DataBufferFactory, int)
|
Now deprecated.
|
as of Spring 5.0.3, in favor of {@link #readInputStream(Callable, DataBufferFactory, int)}, to be removed in Spring 5.1 |
<any> read(AsynchronousFileChannel, long, DataBufferFactory, int)
|
Now deprecated.
|
as of Spring 5.0.3, in favor of {@link #readAsynchronousFileChannel(Callable, long, DataBufferFactory, int)}, to be removed in Spring 5.1 |
<any> read(AsynchronousFileChannel, DataBufferFactory, int)
|
Now deprecated.
|
as of Spring 5.0.3, in favor of {@link #readAsynchronousFileChannel(Callable, DataBufferFactory, int)}, to be removed in Spring 5.1 |
<any> read(ReadableByteChannel, DataBufferFactory, int)
|
Now deprecated.
|
as of Spring 5.0.3, in favor of {@link #readByteChannel(Callable, DataBufferFactory, int)}, to be removed in Spring 5.1 |