Update auto-generated bindings
[ldk-java] / src / main / java / org / ldk / structs / ChannelReestablish.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
8
9 /**
10  * A channel_reestablish message to be sent or received from a peer
11  */
12 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
13 public class ChannelReestablish extends CommonBase {
14         ChannelReestablish(Object _dummy, long ptr) { super(ptr); }
15         @Override @SuppressWarnings("deprecation")
16         protected void finalize() throws Throwable {
17                 super.finalize();
18                 if (ptr != 0) { bindings.ChannelReestablish_free(ptr); }
19         }
20
21         /**
22          * The channel ID
23          */
24         public byte[] get_channel_id() {
25                 byte[] ret = bindings.ChannelReestablish_get_channel_id(this.ptr);
26                 return ret;
27         }
28
29         /**
30          * The channel ID
31          */
32         public void set_channel_id(byte[] val) {
33                 bindings.ChannelReestablish_set_channel_id(this.ptr, 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                 return ret;
42         }
43
44         /**
45          * The next commitment number for the sender
46          */
47         public void set_next_local_commitment_number(long val) {
48                 bindings.ChannelReestablish_set_next_local_commitment_number(this.ptr, val);
49         }
50
51         /**
52          * The next commitment number for the recipient
53          */
54         public long get_next_remote_commitment_number() {
55                 long ret = bindings.ChannelReestablish_get_next_remote_commitment_number(this.ptr);
56                 return ret;
57         }
58
59         /**
60          * The next commitment number for the recipient
61          */
62         public void set_next_remote_commitment_number(long val) {
63                 bindings.ChannelReestablish_set_next_remote_commitment_number(this.ptr, val);
64         }
65
66         /**
67          * Creates a copy of the ChannelReestablish
68          */
69         public ChannelReestablish clone() {
70                 long ret = bindings.ChannelReestablish_clone(this.ptr);
71                 ChannelReestablish ret_hu_conv = new ChannelReestablish(null, ret);
72                 ret_hu_conv.ptrs_to.add(this);
73                 return ret_hu_conv;
74         }
75
76         /**
77          * Serialize the ChannelReestablish object into a byte array which can be read by ChannelReestablish_read
78          */
79         public byte[] write() {
80                 byte[] ret = bindings.ChannelReestablish_write(this.ptr);
81                 return ret;
82         }
83
84         /**
85          * Read a ChannelReestablish from a byte array, created by ChannelReestablish_write
86          */
87         public static Result_ChannelReestablishDecodeErrorZ read(byte[] ser) {
88                 long ret = bindings.ChannelReestablish_read(ser);
89                 Result_ChannelReestablishDecodeErrorZ ret_hu_conv = Result_ChannelReestablishDecodeErrorZ.constr_from_ptr(ret);
90                 return ret_hu_conv;
91         }
92
93 }