
com.frostwire.jlibtorrent.alerts.MmapCacheAlert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jlibtorrent Show documentation
Show all versions of jlibtorrent Show documentation
A swig Java interface for libtorrent by the makers of FrostWire.
package com.frostwire.jlibtorrent.alerts;
import com.frostwire.jlibtorrent.ErrorCode;
import com.frostwire.jlibtorrent.swig.mmap_cache_alert;
/**
* @author gubatron
* @author aldenml
*/
public final class MmapCacheAlert extends AbstractAlert {
public MmapCacheAlert(mmap_cache_alert alert) {
super(alert);
}
public ErrorCode getError() {
return new ErrorCode(alert.getError());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy