[TS] Update auto-generated bindings to LDK-C-Bindings 0.0.123.1
[ldk-java] / c_sharp / src / org / ldk / structs / ChannelMonitorUpdate.cs
1 using org.ldk.impl;
2 using org.ldk.enums;
3 using org.ldk.util;
4 using System;
5
6 namespace org { namespace ldk { namespace structs {
7
8
9 /**
10  * An update generated by the underlying channel itself which contains some new information the
11  * [`ChannelMonitor`] should be made aware of.
12  * 
13  * Because this represents only a small number of updates to the underlying state, it is generally
14  * much smaller than a full [`ChannelMonitor`]. However, for large single commitment transaction
15  * updates (e.g. ones during which there are hundreds of HTLCs pending on the commitment
16  * transaction), a single update may reach upwards of 1 MiB in serialized size.
17  */
18 public class ChannelMonitorUpdate : CommonBase {
19         internal ChannelMonitorUpdate(object _dummy, long ptr) : base(ptr) { }
20         ~ChannelMonitorUpdate() {
21                 if (ptr != 0) { bindings.ChannelMonitorUpdate_free(ptr); }
22         }
23
24         /**
25          * The sequence number of this update. Updates *must* be replayed in-order according to this
26          * sequence number (and updates may panic if they are not). The update_id values are strictly
27          * increasing and increase by one for each new update, with two exceptions specified below.
28          * 
29          * This sequence number is also used to track up to which points updates which returned
30          * [`ChannelMonitorUpdateStatus::InProgress`] have been applied to all copies of a given
31          * ChannelMonitor when ChannelManager::channel_monitor_updated is called.
32          * 
33          * The only instances we allow where update_id values are not strictly increasing have a
34          * special update ID of [`CLOSED_CHANNEL_UPDATE_ID`]. This update ID is used for updates that
35          * will force close the channel by broadcasting the latest commitment transaction or
36          * special post-force-close updates, like providing preimages necessary to claim outputs on the
37          * broadcast commitment transaction. See its docs for more details.
38          * 
39          * [`ChannelMonitorUpdateStatus::InProgress`]: super::ChannelMonitorUpdateStatus::InProgress
40          */
41         public long get_update_id() {
42                 long ret = bindings.ChannelMonitorUpdate_get_update_id(this.ptr);
43                 GC.KeepAlive(this);
44                 return ret;
45         }
46
47         /**
48          * The sequence number of this update. Updates *must* be replayed in-order according to this
49          * sequence number (and updates may panic if they are not). The update_id values are strictly
50          * increasing and increase by one for each new update, with two exceptions specified below.
51          * 
52          * This sequence number is also used to track up to which points updates which returned
53          * [`ChannelMonitorUpdateStatus::InProgress`] have been applied to all copies of a given
54          * ChannelMonitor when ChannelManager::channel_monitor_updated is called.
55          * 
56          * The only instances we allow where update_id values are not strictly increasing have a
57          * special update ID of [`CLOSED_CHANNEL_UPDATE_ID`]. This update ID is used for updates that
58          * will force close the channel by broadcasting the latest commitment transaction or
59          * special post-force-close updates, like providing preimages necessary to claim outputs on the
60          * broadcast commitment transaction. See its docs for more details.
61          * 
62          * [`ChannelMonitorUpdateStatus::InProgress`]: super::ChannelMonitorUpdateStatus::InProgress
63          */
64         public void set_update_id(long val) {
65                 bindings.ChannelMonitorUpdate_set_update_id(this.ptr, val);
66                 GC.KeepAlive(this);
67                 GC.KeepAlive(val);
68         }
69
70         /**
71          * The channel ID associated with these updates.
72          * 
73          * Will be `None` for `ChannelMonitorUpdate`s constructed on LDK versions prior to 0.0.121 and
74          * always `Some` otherwise.
75          * 
76          * Note that the return value (or a relevant inner pointer) may be NULL or all-0s to represent None
77          */
78         public ChannelId get_channel_id() {
79                 long ret = bindings.ChannelMonitorUpdate_get_channel_id(this.ptr);
80                 GC.KeepAlive(this);
81                 if (ret >= 0 && ret <= 4096) { return null; }
82                 org.ldk.structs.ChannelId ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.ChannelId(null, ret); }
83                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
84                 return ret_hu_conv;
85         }
86
87         /**
88          * The channel ID associated with these updates.
89          * 
90          * Will be `None` for `ChannelMonitorUpdate`s constructed on LDK versions prior to 0.0.121 and
91          * always `Some` otherwise.
92          * 
93          * Note that val (or a relevant inner pointer) may be NULL or all-0s to represent None
94          */
95         public void set_channel_id(org.ldk.structs.ChannelId val) {
96                 bindings.ChannelMonitorUpdate_set_channel_id(this.ptr, val == null ? 0 : val.ptr);
97                 GC.KeepAlive(this);
98                 GC.KeepAlive(val);
99                 if (this != null) { this.ptrs_to.AddLast(val); };
100         }
101
102         internal long clone_ptr() {
103                 long ret = bindings.ChannelMonitorUpdate_clone_ptr(this.ptr);
104                 GC.KeepAlive(this);
105                 return ret;
106         }
107
108         /**
109          * Creates a copy of the ChannelMonitorUpdate
110          */
111         public ChannelMonitorUpdate clone() {
112                 long ret = bindings.ChannelMonitorUpdate_clone(this.ptr);
113                 GC.KeepAlive(this);
114                 if (ret >= 0 && ret <= 4096) { return null; }
115                 org.ldk.structs.ChannelMonitorUpdate ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.ChannelMonitorUpdate(null, ret); }
116                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
117                 return ret_hu_conv;
118         }
119
120         /**
121          * Checks if two ChannelMonitorUpdates contain equal inner contents.
122          * This ignores pointers and is_owned flags and looks at the values in fields.
123          * Two objects with NULL inner values will be considered "equal" here.
124          */
125         public bool eq(org.ldk.structs.ChannelMonitorUpdate b) {
126                 bool ret = bindings.ChannelMonitorUpdate_eq(this.ptr, b.ptr);
127                 GC.KeepAlive(this);
128                 GC.KeepAlive(b);
129                 if (this != null) { this.ptrs_to.AddLast(b); };
130                 return ret;
131         }
132
133         public override bool Equals(object o) {
134                 if (!(o is ChannelMonitorUpdate)) return false;
135                 return this.eq((ChannelMonitorUpdate)o);
136         }
137         /**
138          * Serialize the ChannelMonitorUpdate object into a byte array which can be read by ChannelMonitorUpdate_read
139          */
140         public byte[] write() {
141                 long ret = bindings.ChannelMonitorUpdate_write(this.ptr);
142                 GC.KeepAlive(this);
143                 if (ret >= 0 && ret <= 4096) { return null; }
144                 byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
145                 return ret_conv;
146         }
147
148         /**
149          * Read a ChannelMonitorUpdate from a byte array, created by ChannelMonitorUpdate_write
150          */
151         public static Result_ChannelMonitorUpdateDecodeErrorZ read(byte[] ser) {
152                 long ret = bindings.ChannelMonitorUpdate_read(InternalUtils.encodeUint8Array(ser));
153                 GC.KeepAlive(ser);
154                 if (ret >= 0 && ret <= 4096) { return null; }
155                 Result_ChannelMonitorUpdateDecodeErrorZ ret_hu_conv = Result_ChannelMonitorUpdateDecodeErrorZ.constr_from_ptr(ret);
156                 return ret_hu_conv;
157         }
158
159 }
160 } } }