]> git.bitcoin.ninja Git - ldk-java/blob - c_sharp/src/org/ldk/structs/UpdateFailHTLC.cs
Update CI references to LDK 0.0.124 drop stale memchr pins
[ldk-java] / c_sharp / src / org / ldk / structs / UpdateFailHTLC.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_fail_htlc`] message to be sent to or received from a peer.
11  * 
12  * [`update_fail_htlc`]: https://github.com/lightning/bolts/blob/master/02-peer-protocol.md#removing-an-htlc-update_fulfill_htlc-update_fail_htlc-and-update_fail_malformed_htlc
13  */
14 public class UpdateFailHTLC : CommonBase {
15         internal UpdateFailHTLC(object _dummy, long ptr) : base(ptr) { }
16         ~UpdateFailHTLC() {
17                 if (ptr != 0) { bindings.UpdateFailHTLC_free(ptr); }
18         }
19
20         /**
21          * The channel ID
22          */
23         public ChannelId get_channel_id() {
24                 long ret = bindings.UpdateFailHTLC_get_channel_id(this.ptr);
25                 GC.KeepAlive(this);
26                 if (ret >= 0 && ret <= 4096) { return null; }
27                 org.ldk.structs.ChannelId ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.ChannelId(null, ret); }
28                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
29                 return ret_hu_conv;
30         }
31
32         /**
33          * The channel ID
34          */
35         public void set_channel_id(org.ldk.structs.ChannelId val) {
36                 bindings.UpdateFailHTLC_set_channel_id(this.ptr, val.ptr);
37                 GC.KeepAlive(this);
38                 GC.KeepAlive(val);
39         }
40
41         /**
42          * The HTLC ID
43          */
44         public long get_htlc_id() {
45                 long ret = bindings.UpdateFailHTLC_get_htlc_id(this.ptr);
46                 GC.KeepAlive(this);
47                 return ret;
48         }
49
50         /**
51          * The HTLC ID
52          */
53         public void set_htlc_id(long val) {
54                 bindings.UpdateFailHTLC_set_htlc_id(this.ptr, val);
55                 GC.KeepAlive(this);
56                 GC.KeepAlive(val);
57         }
58
59         internal long clone_ptr() {
60                 long ret = bindings.UpdateFailHTLC_clone_ptr(this.ptr);
61                 GC.KeepAlive(this);
62                 return ret;
63         }
64
65         /**
66          * Creates a copy of the UpdateFailHTLC
67          */
68         public UpdateFailHTLC clone() {
69                 long ret = bindings.UpdateFailHTLC_clone(this.ptr);
70                 GC.KeepAlive(this);
71                 if (ret >= 0 && ret <= 4096) { return null; }
72                 org.ldk.structs.UpdateFailHTLC ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.UpdateFailHTLC(null, ret); }
73                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
74                 return ret_hu_conv;
75         }
76
77         /**
78          * Generates a non-cryptographic 64-bit hash of the UpdateFailHTLC.
79          */
80         public long hash() {
81                 long ret = bindings.UpdateFailHTLC_hash(this.ptr);
82                 GC.KeepAlive(this);
83                 return ret;
84         }
85
86         public override int GetHashCode() {
87                 return (int)this.hash();
88         }
89         /**
90          * Checks if two UpdateFailHTLCs contain equal inner contents.
91          * This ignores pointers and is_owned flags and looks at the values in fields.
92          * Two objects with NULL inner values will be considered "equal" here.
93          */
94         public bool eq(org.ldk.structs.UpdateFailHTLC b) {
95                 bool ret = bindings.UpdateFailHTLC_eq(this.ptr, b.ptr);
96                 GC.KeepAlive(this);
97                 GC.KeepAlive(b);
98                 if (this != null) { this.ptrs_to.AddLast(b); };
99                 return ret;
100         }
101
102         public override bool Equals(object o) {
103                 if (!(o is UpdateFailHTLC)) return false;
104                 return this.eq((UpdateFailHTLC)o);
105         }
106         /**
107          * Serialize the UpdateFailHTLC object into a byte array which can be read by UpdateFailHTLC_read
108          */
109         public byte[] write() {
110                 long ret = bindings.UpdateFailHTLC_write(this.ptr);
111                 GC.KeepAlive(this);
112                 if (ret >= 0 && ret <= 4096) { return null; }
113                 byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
114                 return ret_conv;
115         }
116
117         /**
118          * Read a UpdateFailHTLC from a byte array, created by UpdateFailHTLC_write
119          */
120         public static Result_UpdateFailHTLCDecodeErrorZ read(byte[] ser) {
121                 long ret = bindings.UpdateFailHTLC_read(InternalUtils.encodeUint8Array(ser));
122                 GC.KeepAlive(ser);
123                 if (ret >= 0 && ret <= 4096) { return null; }
124                 Result_UpdateFailHTLCDecodeErrorZ ret_hu_conv = Result_UpdateFailHTLCDecodeErrorZ.constr_from_ptr(ret);
125                 return ret_hu_conv;
126         }
127
128 }
129 } } }