Update auto-updated Java files
[ldk-java] / src / main / java / org / ldk / structs / ChannelReestablish.java
index 6e50f61707c6e5a2f0ed38de57ebe053dda720f0..47f3822654bc803a7cb2573aea4f694c19c7cff4 100644 (file)
@@ -4,6 +4,7 @@ import org.ldk.impl.bindings;
 import org.ldk.enums.*;
 import org.ldk.util.*;
 import java.util.Arrays;
+import java.lang.ref.Reference;
 import javax.annotation.Nullable;
 
 
@@ -24,6 +25,7 @@ public class ChannelReestablish extends CommonBase {
         */
        public byte[] get_channel_id() {
                byte[] ret = bindings.ChannelReestablish_get_channel_id(this.ptr);
+               Reference.reachabilityFence(this);
                return ret;
        }
 
@@ -32,6 +34,8 @@ public class ChannelReestablish extends CommonBase {
         */
        public void set_channel_id(byte[] val) {
                bindings.ChannelReestablish_set_channel_id(this.ptr, InternalUtils.check_arr_len(val, 32));
+               Reference.reachabilityFence(this);
+               Reference.reachabilityFence(val);
        }
 
        /**
@@ -39,6 +43,7 @@ public class ChannelReestablish extends CommonBase {
         */
        public long get_next_local_commitment_number() {
                long ret = bindings.ChannelReestablish_get_next_local_commitment_number(this.ptr);
+               Reference.reachabilityFence(this);
                return ret;
        }
 
@@ -47,6 +52,8 @@ public class ChannelReestablish extends CommonBase {
         */
        public void set_next_local_commitment_number(long val) {
                bindings.ChannelReestablish_set_next_local_commitment_number(this.ptr, val);
+               Reference.reachabilityFence(this);
+               Reference.reachabilityFence(val);
        }
 
        /**
@@ -54,6 +61,7 @@ public class ChannelReestablish extends CommonBase {
         */
        public long get_next_remote_commitment_number() {
                long ret = bindings.ChannelReestablish_get_next_remote_commitment_number(this.ptr);
+               Reference.reachabilityFence(this);
                return ret;
        }
 
@@ -62,10 +70,13 @@ public class ChannelReestablish extends CommonBase {
         */
        public void set_next_remote_commitment_number(long val) {
                bindings.ChannelReestablish_set_next_remote_commitment_number(this.ptr, val);
+               Reference.reachabilityFence(this);
+               Reference.reachabilityFence(val);
        }
 
        long clone_ptr() {
                long ret = bindings.ChannelReestablish_clone_ptr(this.ptr);
+               Reference.reachabilityFence(this);
                return ret;
        }
 
@@ -74,6 +85,7 @@ public class ChannelReestablish extends CommonBase {
         */
        public ChannelReestablish clone() {
                long ret = bindings.ChannelReestablish_clone(this.ptr);
+               Reference.reachabilityFence(this);
                if (ret >= 0 && ret <= 4096) { return null; }
                ChannelReestablish ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new ChannelReestablish(null, ret); }
                ret_hu_conv.ptrs_to.add(this);
@@ -85,6 +97,7 @@ public class ChannelReestablish extends CommonBase {
         */
        public byte[] write() {
                byte[] ret = bindings.ChannelReestablish_write(this.ptr);
+               Reference.reachabilityFence(this);
                return ret;
        }
 
@@ -93,6 +106,7 @@ public class ChannelReestablish extends CommonBase {
         */
        public static Result_ChannelReestablishDecodeErrorZ read(byte[] ser) {
                long ret = bindings.ChannelReestablish_read(ser);
+               Reference.reachabilityFence(ser);
                if (ret >= 0 && ret <= 4096) { return null; }
                Result_ChannelReestablishDecodeErrorZ ret_hu_conv = Result_ChannelReestablishDecodeErrorZ.constr_from_ptr(ret);
                return ret_hu_conv;