public class DefaultFileRegion extends java.lang.Object implements FileRegion
| Modifier and Type | Field and Description |
|---|---|
private java.nio.channels.FileChannel |
channel |
private long |
originalPosition |
private long |
position |
private long |
remainingBytes |
| Constructor and Description |
|---|
DefaultFileRegion(java.nio.channels.FileChannel channel) |
DefaultFileRegion(java.nio.channels.FileChannel channel,
long position,
long remainingBytes) |
| Modifier and Type | Method and Description |
|---|---|
java.nio.channels.FileChannel |
getFileChannel()
The open FileChannel from which data will be read to send to
remote host.
|
java.lang.String |
getFilename()
Provides an absolute filename for the underlying FileChannel.
|
long |
getPosition()
The current file position from which data will be read.
|
long |
getRemainingBytes()
The number of bytes remaining to be written from the file to the remote
host.
|
long |
getWrittenBytes()
The total number of bytes already written.
|
void |
update(long value)
Updates the current file position based on the specified amount.
|
private final java.nio.channels.FileChannel channel
private final long originalPosition
private long position
private long remainingBytes
public DefaultFileRegion(java.nio.channels.FileChannel channel)
throws java.io.IOException
java.io.IOExceptionpublic DefaultFileRegion(java.nio.channels.FileChannel channel,
long position,
long remainingBytes)
public long getWrittenBytes()
FileRegiongetWrittenBytes in interface FileRegionpublic long getRemainingBytes()
FileRegiongetRemainingBytes in interface FileRegionpublic java.nio.channels.FileChannel getFileChannel()
FileRegiongetFileChannel in interface FileRegionpublic long getPosition()
FileRegiongetPosition in interface FileRegionpublic void update(long value)
FileRegionFileRegion.getPosition() and
FileRegion.getWrittenBytes() by the given amount and decreases the value
returned by FileRegion.getRemainingBytes() by the given amount.update in interface FileRegionvalue - The new value for the file position.public java.lang.String getFilename()
FileRegiongetFilename in interface FileRegion