I was looking at this question - Reset buffer with BufferedReader in Java? - which says that you can reset the buffer by calling:
fIn.getChannel().position(0);
But what if we are using the Apache Commons IO ReversedLinesFileReader class? Is there a way to simulate a similar action?