public class DefaultFileRegion extends AbstractReferenceCounted implements FileRegion
FileRegion implementation which transfer data from a FileChannel or File.
Be aware that the FileChannel will be automatically closed once AbstractReferenceCounted.refCnt() returns
0.| Constructor and Description |
|---|
DefaultFileRegion(java.nio.channels.FileChannel file,
long position,
long count)
Create a new instance
|
DefaultFileRegion(java.io.File f,
long position,
long count)
Create a new instance using the given
File. |
| Modifier and Type | Method and Description |
|---|---|
long |
count()
Returns the number of bytes to transfer.
|
protected void |
deallocate()
Called once
AbstractReferenceCounted.refCnt() is equals 0. |
boolean |
isOpen()
Returns
true if the FileRegion has a open file-descriptor |
void |
open()
Explicitly open the underlying file-descriptor if not done yet.
|
long |
position()
Returns the offset in the file where the transfer began.
|
long |
transfered()
Return the bytes which was transfered already
|
long |
transferTo(java.nio.channels.WritableByteChannel target,
long position)
Transfers the content of this file region to the specified channel.
|
refCnt, release, release, retain, retain, setRefCntpublic DefaultFileRegion(java.nio.channels.FileChannel file,
long position,
long count)
file - the FileChannel which should be transferedposition - the position from which the transfer should startcount - the number of bytes to transferpublic DefaultFileRegion(java.io.File f,
long position,
long count)
File. The File will be opened lazily or
explicitly via open().f - the File which should be transferedposition - the position from which the transfer should startcount - the number of bytes to transferpublic boolean isOpen()
true if the FileRegion has a open file-descriptorpublic void open()
throws java.io.IOException
java.io.IOExceptionpublic long position()
FileRegionposition in interface FileRegionpublic long count()
FileRegioncount in interface FileRegionpublic long transfered()
FileRegiontransfered in interface FileRegionpublic long transferTo(java.nio.channels.WritableByteChannel target,
long position)
throws java.io.IOException
FileRegiontransferTo in interface FileRegiontarget - 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.position()th byte and
FileRegion.count() - 1 will make the last
byte of the region transferred.java.io.IOExceptionprotected void deallocate()
AbstractReferenceCountedAbstractReferenceCounted.refCnt() is equals 0.deallocate in class AbstractReferenceCountedCopyright © 2008–2018 The Netty Project. All rights reserved.