Package io.activej.async.file
Interface AsyncFileService
-
- All Known Implementing Classes:
ExecutorAsyncFileService
public interface AsyncFileService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Promise<Integer>read(FileChannel channel, long position, byte[] array, int offset, int size)Promise<Integer>write(FileChannel channel, long position, byte[] array, int offset, int size)
-
-
-
Method Detail
-
read
Promise<Integer> read(FileChannel channel, long position, byte[] array, int offset, int size)
-
write
Promise<Integer> write(FileChannel channel, long position, byte[] array, int offset, int size)
-
-