public class SftpFileChannel extends FileChannel
FileChannel.MapMode| Modifier and Type | Field and Description |
|---|---|
static String |
COPY_BUFSIZE_PROP |
static int |
DEFAULT_TRANSFER_BUFFER_SIZE |
static Set<SftpClient.OpenMode> |
READ_MODES |
static Set<SftpClient.OpenMode> |
WRITE_MODES |
| Constructor and Description |
|---|
SftpFileChannel(SftpPath p,
Collection<SftpClient.OpenMode> modes) |
| Modifier and Type | Method and Description |
|---|---|
protected long |
doRead(List<ByteBuffer> buffers,
long position) |
protected long |
doWrite(List<ByteBuffer> buffers,
long position) |
void |
force(boolean metaData) |
protected void |
implCloseChannel() |
FileLock |
lock(long position,
long size,
boolean shared) |
MappedByteBuffer |
map(FileChannel.MapMode mode,
long position,
long size) |
long |
position() |
FileChannel |
position(long newPosition) |
int |
read(ByteBuffer dst) |
long |
read(ByteBuffer[] dsts,
int offset,
int length) |
int |
read(ByteBuffer dst,
long position) |
long |
size() |
String |
toString() |
long |
transferFrom(ReadableByteChannel src,
long position,
long count) |
long |
transferTo(long position,
long count,
WritableByteChannel target) |
FileChannel |
truncate(long size) |
FileLock |
tryLock(long position,
long size,
boolean shared) |
int |
write(ByteBuffer src) |
long |
write(ByteBuffer[] srcs,
int offset,
int length) |
int |
write(ByteBuffer src,
long position) |
begin, close, end, isOpenpublic static final String COPY_BUFSIZE_PROP
public static final int DEFAULT_TRANSFER_BUFFER_SIZE
public static final Set<SftpClient.OpenMode> READ_MODES
public static final Set<SftpClient.OpenMode> WRITE_MODES
public SftpFileChannel(SftpPath p, Collection<SftpClient.OpenMode> modes) throws IOException
IOExceptionpublic int read(ByteBuffer dst) throws IOException
read in interface ReadableByteChannelread in interface SeekableByteChannelread in class FileChannelIOExceptionpublic int read(ByteBuffer dst, long position) throws IOException
read in class FileChannelIOExceptionpublic long read(ByteBuffer[] dsts, int offset, int length) throws IOException
read in interface ScatteringByteChannelread in class FileChannelIOExceptionprotected long doRead(List<ByteBuffer> buffers, long position) throws IOException
IOExceptionpublic int write(ByteBuffer src) throws IOException
write in interface SeekableByteChannelwrite in interface WritableByteChannelwrite in class FileChannelIOExceptionpublic int write(ByteBuffer src, long position) throws IOException
write in class FileChannelIOExceptionpublic long write(ByteBuffer[] srcs, int offset, int length) throws IOException
write in interface GatheringByteChannelwrite in class FileChannelIOExceptionprotected long doWrite(List<ByteBuffer> buffers, long position) throws IOException
IOExceptionpublic long position()
throws IOException
position in interface SeekableByteChannelposition in class FileChannelIOExceptionpublic FileChannel position(long newPosition) throws IOException
position in interface SeekableByteChannelposition in class FileChannelIOExceptionpublic long size()
throws IOException
size in interface SeekableByteChannelsize in class FileChannelIOExceptionpublic FileChannel truncate(long size) throws IOException
truncate in interface SeekableByteChanneltruncate in class FileChannelIOExceptionpublic void force(boolean metaData)
throws IOException
force in class FileChannelIOExceptionpublic long transferTo(long position,
long count,
WritableByteChannel target)
throws IOException
transferTo in class FileChannelIOExceptionpublic long transferFrom(ReadableByteChannel src, long position, long count) throws IOException
transferFrom in class FileChannelIOExceptionpublic MappedByteBuffer map(FileChannel.MapMode mode, long position, long size) throws IOException
map in class FileChannelIOExceptionpublic FileLock lock(long position, long size, boolean shared) throws IOException
lock in class FileChannelIOExceptionpublic FileLock tryLock(long position, long size, boolean shared) throws IOException
tryLock in class FileChannelIOExceptionprotected void implCloseChannel()
throws IOException
implCloseChannel in class AbstractInterruptibleChannelIOExceptionCopyright © 2008–2015 The Apache Software Foundation. All rights reserved.