fa11efab69d9446d781bf96389a7a26acf74fd74
[ldk-java] / c_sharp / src / org / ldk / structs / ChannelReestablish.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  * A channel_reestablish message to be sent or received from a peer
11  */
12 public class ChannelReestablish : CommonBase {
13         internal ChannelReestablish(object _dummy, long ptr) : base(ptr) { }
14         ~ChannelReestablish() {
15                 if (ptr != 0) { bindings.ChannelReestablish_free(ptr); }
16         }
17
18         /**
19          * The channel ID
20          */
21         public byte[] get_channel_id() {
22                 byte[] ret = bindings.ChannelReestablish_get_channel_id(this.ptr);
23                 GC.KeepAlive(this);
24                 return ret;
25         }
26
27         /**
28          * The channel ID
29          */
30         public void set_channel_id(byte[] val) {
31                 bindings.ChannelReestablish_set_channel_id(this.ptr, InternalUtils.check_arr_len(val, 32));
32                 GC.KeepAlive(this);
33                 GC.KeepAlive(val);
34         }
35
36         /**
37          * The next commitment number for the sender
38          */
39         public long get_next_local_commitment_number() {
40                 long ret = bindings.ChannelReestablish_get_next_local_commitment_number(this.ptr);
41                 GC.KeepAlive(this);
42                 return ret;
43         }
44
45         /**
46          * The next commitment number for the sender
47          */
48         public void set_next_local_commitment_number(long val) {
49                 bindings.ChannelReestablish_set_next_local_commitment_number(this.ptr, val);
50                 GC.KeepAlive(this);
51                 GC.KeepAlive(val);
52         }
53
54         /**
55          * The next commitment number for the recipient
56          */
57         public long get_next_remote_commitment_number() {
58                 long ret = bindings.ChannelReestablish_get_next_remote_commitment_number(this.ptr);
59                 GC.KeepAlive(this);
60                 return ret;
61         }
62
63         /**
64          * The next commitment number for the recipient
65          */
66         public void set_next_remote_commitment_number(long val) {
67                 bindings.ChannelReestablish_set_next_remote_commitment_number(this.ptr, val);
68                 GC.KeepAlive(this);
69                 GC.KeepAlive(val);
70         }
71
72         internal long clone_ptr() {
73                 long ret = bindings.ChannelReestablish_clone_ptr(this.ptr);
74                 GC.KeepAlive(this);
75                 return ret;
76         }
77
78         /**
79          * Creates a copy of the ChannelReestablish
80          */
81         public ChannelReestablish clone() {
82                 long ret = bindings.ChannelReestablish_clone(this.ptr);
83                 GC.KeepAlive(this);
84                 if (ret >= 0 && ret <= 4096) { return null; }
85                 org.ldk.structs.ChannelReestablish ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.ChannelReestablish(null, ret); }
86                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
87                 return ret_hu_conv;
88         }
89
90         /**
91          * Checks if two ChannelReestablishs contain equal inner contents.
92          * This ignores pointers and is_owned flags and looks at the values in fields.
93          * Two objects with NULL inner values will be considered "equal" here.
94          */
95         public bool eq(org.ldk.structs.ChannelReestablish b) {
96                 bool ret = bindings.ChannelReestablish_eq(this.ptr, b == null ? 0 : b.ptr);
97                 GC.KeepAlive(this);
98                 GC.KeepAlive(b);
99                 if (this != null) { this.ptrs_to.AddLast(b); };
100                 return ret;
101         }
102
103         public override bool Equals(object o) {
104                 if (!(o is ChannelReestablish)) return false;
105                 return this.eq((ChannelReestablish)o);
106         }
107         /**
108          * Serialize the ChannelReestablish object into a byte array which can be read by ChannelReestablish_read
109          */
110         public byte[] write() {
111                 byte[] ret = bindings.ChannelReestablish_write(this.ptr);
112                 GC.KeepAlive(this);
113                 return ret;
114         }
115
116         /**
117          * Read a ChannelReestablish from a byte array, created by ChannelReestablish_write
118          */
119         public static Result_ChannelReestablishDecodeErrorZ read(byte[] ser) {
120                 long ret = bindings.ChannelReestablish_read(ser);
121                 GC.KeepAlive(ser);
122                 if (ret >= 0 && ret <= 4096) { return null; }
123                 Result_ChannelReestablishDecodeErrorZ ret_hu_conv = Result_ChannelReestablishDecodeErrorZ.constr_from_ptr(ret);
124                 return ret_hu_conv;
125         }
126
127 }
128 } } }