X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FPeerHandleError.java;h=1814e943926bbaee7cb756ab8366ae5f84c4c5a4;hb=db1a11032b4164540a2d3403696be12bbca70e94;hp=a7240bc69dfa973d1c6646e80c8476ccd1cad7d5;hpb=110f2f104ba8fc34caa7e34e04737f36f064b050;p=ldk-java diff --git a/src/main/java/org/ldk/structs/PeerHandleError.java b/src/main/java/org/ldk/structs/PeerHandleError.java index a7240bc6..1814e943 100644 --- a/src/main/java/org/ldk/structs/PeerHandleError.java +++ b/src/main/java/org/ldk/structs/PeerHandleError.java @@ -4,28 +4,59 @@ import org.ldk.impl.bindings; import org.ldk.enums.*; import org.ldk.util.*; import java.util.Arrays; +import javax.annotation.Nullable; + +/** + * Error for PeerManager errors. If you get one of these, you must disconnect the socket and + * generate no further read_event/write_buffer_space_avail/socket_disconnected calls for the + * descriptor. + */ @SuppressWarnings("unchecked") // We correctly assign various generic arrays public class PeerHandleError extends CommonBase { PeerHandleError(Object _dummy, long ptr) { super(ptr); } @Override @SuppressWarnings("deprecation") protected void finalize() throws Throwable { super.finalize(); - bindings.PeerHandleError_free(ptr); + if (ptr != 0) { bindings.PeerHandleError_free(ptr); } } + /** + * Used to indicate that we probably can't make any future connections to this peer, implying + * we should go ahead and force-close any channels we have with it. + */ public boolean get_no_connection_possible() { boolean ret = bindings.PeerHandleError_get_no_connection_possible(this.ptr); return ret; } + /** + * Used to indicate that we probably can't make any future connections to this peer, implying + * we should go ahead and force-close any channels we have with it. + */ public void set_no_connection_possible(boolean val) { bindings.PeerHandleError_set_no_connection_possible(this.ptr, val); } - public static PeerHandleError constructor_new(boolean no_connection_possible_arg) { + /** + * Constructs a new PeerHandleError given each field + */ + public static PeerHandleError of(boolean no_connection_possible_arg) { long ret = bindings.PeerHandleError_new(no_connection_possible_arg); + if (ret < 1024) { return null; } + PeerHandleError ret_hu_conv = new PeerHandleError(null, ret); + ret_hu_conv.ptrs_to.add(ret_hu_conv); + return ret_hu_conv; + } + + /** + * Creates a copy of the PeerHandleError + */ + public PeerHandleError clone() { + long ret = bindings.PeerHandleError_clone(this.ptr); + if (ret < 1024) { return null; } PeerHandleError ret_hu_conv = new PeerHandleError(null, ret); + ret_hu_conv.ptrs_to.add(this); return ret_hu_conv; }