Package org.xj3d.io
Interface ReadProgressListener
- All Known Implementing Classes:
WorldLoadHandler
public interface ReadProgressListener
Listens for updates to read status on a stream.
- Version:
- $Revision: 1.2 $
- Author:
- Alan Hudson
-
Method Summary
Modifier and TypeMethodDescriptionvoid
progressUpdate
(long value) Notification of where the stream is at.void
The stream has closed.
-
Method Details
-
progressUpdate
void progressUpdate(long value) Notification of where the stream is at. The value is dependent on the type, absolute or relative.- Parameters:
value
- The new value
-
streamClosed
void streamClosed()The stream has closed.
-