org.libtorrent4j.alerts.CacheFlushedAlert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of libtorrent4j Show documentation
Show all versions of libtorrent4j Show documentation
A swig Java interface for libtorrent
package org.libtorrent4j.alerts;
import org.libtorrent4j.swig.cache_flushed_alert;
/**
* This alert is posted when the disk cache has been flushed for a specific
* torrent as a result of a call to torrent_handle::flush_cache(). This
* alert belongs to the ``storage_notification`` category, which must be
* enabled to let this alert through. The alert is also posted when removing
* a torrent from the session, once the outstanding cache flush is complete
* and the torrent does no longer have any files open.
*
* @author gubatron
* @author aldenml
*/
public final class CacheFlushedAlert extends TorrentAlert {
CacheFlushedAlert(cache_flushed_alert alert) {
super(alert);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy