
com.frostwire.jlibtorrent.alerts.PeerConnectAlert 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.swig.peer_connect_alert;
/**
* This alert is posted every time an outgoing peer connect attempts succeeds.
*
* @author gubatron
* @author aldenml
*/
public final class PeerConnectAlert extends PeerAlert {
public PeerConnectAlert(peer_connect_alert alert) {
super(alert);
}
public int getSocketType() {
return alert.getSocket_type();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy