public class DefaultFileRegion extends Object implements FileRegion
Constructor and Description |
---|
DefaultFileRegion(FileChannel file,
long position,
long count) |
DefaultFileRegion(FileChannel file,
long position,
long count,
boolean releaseAfterTransfer) |
Modifier and Type | Method and Description |
---|---|
long |
getCount()
Returns the number of bytes to transfer.
|
long |
getPosition()
Returns the offset in the file where the transfer began.
|
boolean |
releaseAfterTransfer() |
void |
releaseExternalResources()
Releases the external resources that this object depends on.
|
long |
transferTo(WritableByteChannel target,
long position)
Transfers the content of this file region to the specified channel.
|
public DefaultFileRegion(FileChannel file, long position, long count)
public DefaultFileRegion(FileChannel file, long position, long count, boolean releaseAfterTransfer)
public long getPosition()
FileRegion
getPosition
in interface FileRegion
public long getCount()
FileRegion
getCount
in interface FileRegion
public boolean releaseAfterTransfer()
public long transferTo(WritableByteChannel target, long position) throws IOException
FileRegion
transferTo
in interface FileRegion
target
- the destination of the transferposition
- the relative offset of the file where the transfer
begins from. For example, 0 will make the
transfer start from FileRegion.getPosition()
th byte and
FileRegion.getCount()
- 1 will make the last
byte of the region transferred.IOException
public void releaseExternalResources()
ExternalResourceReleasable
releaseExternalResources
in interface ExternalResourceReleasable
Copyright © 2008-2014 The Netty Project. All Rights Reserved.