876049c44a1d9f617b0408bc4317f641ba55da39
[ldk-java] / src / main / java / org / ldk / structs / ChannelMonitorUpdate.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5 import org.ldk.util.*;
6 import java.util.Arrays;
7 import java.lang.ref.Reference;
8 import javax.annotation.Nullable;
9
10
11 /**
12  * An update generated by the underlying channel itself which contains some new information the
13  * [`ChannelMonitor`] should be made aware of.
14  * 
15  * Because this represents only a small number of updates to the underlying state, it is generally
16  * much smaller than a full [`ChannelMonitor`]. However, for large single commitment transaction
17  * updates (e.g. ones during which there are hundreds of HTLCs pending on the commitment
18  * transaction), a single update may reach upwards of 1 MiB in serialized size.
19  */
20 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
21 public class ChannelMonitorUpdate extends CommonBase {
22         ChannelMonitorUpdate(Object _dummy, long ptr) { super(ptr); }
23         @Override @SuppressWarnings("deprecation")
24         protected void finalize() throws Throwable {
25                 super.finalize();
26                 if (ptr != 0) { bindings.ChannelMonitorUpdate_free(ptr); }
27         }
28
29         /**
30          * The sequence number of this update. Updates *must* be replayed in-order according to this
31          * sequence number (and updates may panic if they are not). The update_id values are strictly
32          * increasing and increase by one for each new update, with one exception specified below.
33          * 
34          * This sequence number is also used to track up to which points updates which returned
35          * ChannelMonitorUpdateErr::TemporaryFailure have been applied to all copies of a given
36          * ChannelMonitor when ChannelManager::channel_monitor_updated is called.
37          * 
38          * The only instance where update_id values are not strictly increasing is the case where we
39          * allow post-force-close updates with a special update ID of [`CLOSED_CHANNEL_UPDATE_ID`]. See
40          * its docs for more details.
41          */
42         public long get_update_id() {
43                 long ret = bindings.ChannelMonitorUpdate_get_update_id(this.ptr);
44                 Reference.reachabilityFence(this);
45                 return ret;
46         }
47
48         /**
49          * The sequence number of this update. Updates *must* be replayed in-order according to this
50          * sequence number (and updates may panic if they are not). The update_id values are strictly
51          * increasing and increase by one for each new update, with one exception specified below.
52          * 
53          * This sequence number is also used to track up to which points updates which returned
54          * ChannelMonitorUpdateErr::TemporaryFailure have been applied to all copies of a given
55          * ChannelMonitor when ChannelManager::channel_monitor_updated is called.
56          * 
57          * The only instance where update_id values are not strictly increasing is the case where we
58          * allow post-force-close updates with a special update ID of [`CLOSED_CHANNEL_UPDATE_ID`]. See
59          * its docs for more details.
60          */
61         public void set_update_id(long val) {
62                 bindings.ChannelMonitorUpdate_set_update_id(this.ptr, val);
63                 Reference.reachabilityFence(this);
64                 Reference.reachabilityFence(val);
65         }
66
67         long clone_ptr() {
68                 long ret = bindings.ChannelMonitorUpdate_clone_ptr(this.ptr);
69                 Reference.reachabilityFence(this);
70                 return ret;
71         }
72
73         /**
74          * Creates a copy of the ChannelMonitorUpdate
75          */
76         public ChannelMonitorUpdate clone() {
77                 long ret = bindings.ChannelMonitorUpdate_clone(this.ptr);
78                 Reference.reachabilityFence(this);
79                 if (ret >= 0 && ret <= 4096) { return null; }
80                 org.ldk.structs.ChannelMonitorUpdate ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.ChannelMonitorUpdate(null, ret); }
81                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
82                 return ret_hu_conv;
83         }
84
85         /**
86          * Serialize the ChannelMonitorUpdate object into a byte array which can be read by ChannelMonitorUpdate_read
87          */
88         public byte[] write() {
89                 byte[] ret = bindings.ChannelMonitorUpdate_write(this.ptr);
90                 Reference.reachabilityFence(this);
91                 return ret;
92         }
93
94         /**
95          * Read a ChannelMonitorUpdate from a byte array, created by ChannelMonitorUpdate_write
96          */
97         public static Result_ChannelMonitorUpdateDecodeErrorZ read(byte[] ser) {
98                 long ret = bindings.ChannelMonitorUpdate_read(ser);
99                 Reference.reachabilityFence(ser);
100                 if (ret >= 0 && ret <= 4096) { return null; }
101                 Result_ChannelMonitorUpdateDecodeErrorZ ret_hu_conv = Result_ChannelMonitorUpdateDecodeErrorZ.constr_from_ptr(ret);
102                 return ret_hu_conv;
103         }
104
105 }