org.entityfs
Interface RandomAccessCloseObserver

All Known Implementing Classes:
ArchiveEntryCollaborator, ZipEntryCollaborator

public interface RandomAccessCloseObserver

This interface is implemented by objects that want to be notified when an open RandomAccess is closed.

Since:
1.0
Author:
Karl Gustafsson
See Also:
RandomAccess.addCloseObserver(RandomAccessCloseObserver)

Method Summary
 void notifyClosed(RandomAccess ra)
          Notify the observer that the supplied RandomAccess has been closed.
 

Method Detail

notifyClosed

void notifyClosed(RandomAccess ra)
Notify the observer that the supplied RandomAccess has been closed.

Parameters:
ra - The closed RandomAccess.