public FileChannel position()

in src/main/java/org/apache/sling/commons/jcr/file/internal/JcrFileChannel.java [121:125]


    public FileChannel position(final long newPosition) throws IOException {
        logger.info("setting position ({}) to new position {}", fileChannel.position(), newPosition);
        fileChannel.position(newPosition);
        return this;
    }