Package java.io
Class InputStream

Public Method mark

void mark(int readlimit)

_INSERT_METHOD_SIGNATURE_HERE_

Description:

This method does nothing and has to be overwritten by a subclass.

The overwitten method should mark the current position in this input stream. A subsequent call to the reset method puts the stream back to the marked position.

The readlimit argument specifies how many bytes can be read before the mark position gets invalidated.