Seekablepublic interface Seekable A media object will implement this interface
if it is capable of seeking to a particular position in the
stream. The most common classes that implement Seekable are SourceStreams in
DataSources and SourceTransferHandlers in DataSinks.
|
Methods Summary |
---|
public boolean | isRandomAccess()Find out if this media object can position anywhere in the
stream. If the stream is not random access, it can only be repositioned
to the beginning.
| public long | seek(long where)Seek to the specified point in the stream.
| public long | tell()Obtain the current point in the stream.
|
|