com.frostwire.jlibtorrent.swig.peer_connect_alert 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.
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
* Version 3.0.10
*
* Do not make changes to this file unless you know what you are doing--modify
* the SWIG interface file instead.
* ----------------------------------------------------------------------------- */
package com.frostwire.jlibtorrent.swig;
public class peer_connect_alert extends peer_alert {
private transient long swigCPtr;
protected peer_connect_alert(long cPtr, boolean cMemoryOwn) {
super(libtorrent_jni.peer_connect_alert_SWIGUpcast(cPtr), cMemoryOwn);
swigCPtr = cPtr;
}
protected static long getCPtr(peer_connect_alert obj) {
return (obj == null) ? 0 : obj.swigCPtr;
}
protected void finalize() {
delete();
}
public synchronized void delete() {
if (swigCPtr != 0) {
if (swigCMemOwn) {
swigCMemOwn = false;
libtorrent_jni.delete_peer_connect_alert(swigCPtr);
}
swigCPtr = 0;
}
super.delete();
}
public int type() {
return libtorrent_jni.peer_connect_alert_type(swigCPtr, this);
}
public int category() {
return libtorrent_jni.peer_connect_alert_category(swigCPtr, this);
}
public String what() {
return libtorrent_jni.peer_connect_alert_what(swigCPtr, this);
}
public String message() {
return libtorrent_jni.peer_connect_alert_message(swigCPtr, this);
}
public int getSocket_type() {
return libtorrent_jni.peer_connect_alert_socket_type_get(swigCPtr, this);
}
public final static int priority = libtorrent_jni.peer_connect_alert_priority_get();
public final static int alert_type = libtorrent_jni.peer_connect_alert_alert_type_get();
public final static int static_category = libtorrent_jni.peer_connect_alert_static_category_get();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy