Update java bindings with new generator and new upstream code
[ldk-java] / src / main / java / org / ldk / structs / PeerHandleError.java
index 0bd7604dc37cb2bca6ffa0c241aa2fbb1b7991be..429f44aa3641d3383d4cfcc5113b21ce367b9f6d 100644 (file)
@@ -5,6 +5,12 @@ import org.ldk.enums.*;
 import org.ldk.util.*;
 import java.util.Arrays;
 
+
+/**
+ * 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); }
@@ -14,15 +20,26 @@ public class PeerHandleError extends CommonBase {
                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);
        }
 
+       /**
+        * Constructs a new PeerHandleError given each field
+        */
        public static PeerHandleError constructor_new(boolean no_connection_possible_arg) {
                long ret = bindings.PeerHandleError_new(no_connection_possible_arg);
                PeerHandleError ret_hu_conv = new PeerHandleError(null, ret);
@@ -30,6 +47,9 @@ public class PeerHandleError extends CommonBase {
                return ret_hu_conv;
        }
 
+       /**
+        * Creates a copy of the PeerHandleError
+        */
        public PeerHandleError clone() {
                long ret = bindings.PeerHandleError_clone(this.ptr);
                PeerHandleError ret_hu_conv = new PeerHandleError(null, ret);