X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FChannelUpdate.java;fp=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FChannelUpdate.java;h=cce8c155047c33978ad74bb00ec4396ae8fcfbed;hb=17113550a5fefab21f39f27fbfe02646b8db53ae;hp=805b4511cbbbc7fdfa3475bb2f6323c08395d8a0;hpb=d69a40d071871d3c0e4160744202c6e85941a4cc;p=ldk-java diff --git a/src/main/java/org/ldk/structs/ChannelUpdate.java b/src/main/java/org/ldk/structs/ChannelUpdate.java index 805b4511..cce8c155 100644 --- a/src/main/java/org/ldk/structs/ChannelUpdate.java +++ b/src/main/java/org/ldk/structs/ChannelUpdate.java @@ -5,6 +5,10 @@ import org.ldk.enums.*; import org.ldk.util.*; import java.util.Arrays; + +/** + * A channel_update message to be sent or received from a peer + */ @SuppressWarnings("unchecked") // We correctly assign various generic arrays public class ChannelUpdate extends CommonBase { ChannelUpdate(Object _dummy, long ptr) { super(ptr); } @@ -14,15 +18,24 @@ public class ChannelUpdate extends CommonBase { if (ptr != 0) { bindings.ChannelUpdate_free(ptr); } } + /** + * A signature of the channel update + */ public byte[] get_signature() { byte[] ret = bindings.ChannelUpdate_get_signature(this.ptr); return ret; } + /** + * A signature of the channel update + */ public void set_signature(byte[] val) { bindings.ChannelUpdate_set_signature(this.ptr, val); } + /** + * The actual channel update + */ public UnsignedChannelUpdate get_contents() { long ret = bindings.ChannelUpdate_get_contents(this.ptr); UnsignedChannelUpdate ret_hu_conv = new UnsignedChannelUpdate(null, ret); @@ -30,11 +43,17 @@ public class ChannelUpdate extends CommonBase { return ret_hu_conv; } + /** + * The actual channel update + */ public void set_contents(UnsignedChannelUpdate val) { bindings.ChannelUpdate_set_contents(this.ptr, val == null ? 0 : val.ptr & ~1); this.ptrs_to.add(val); } + /** + * Constructs a new ChannelUpdate given each field + */ public static ChannelUpdate constructor_new(byte[] signature_arg, UnsignedChannelUpdate contents_arg) { long ret = bindings.ChannelUpdate_new(signature_arg, contents_arg == null ? 0 : contents_arg.ptr & ~1); ChannelUpdate ret_hu_conv = new ChannelUpdate(null, ret); @@ -43,6 +62,9 @@ public class ChannelUpdate extends CommonBase { return ret_hu_conv; } + /** + * Creates a copy of the ChannelUpdate + */ public ChannelUpdate clone() { long ret = bindings.ChannelUpdate_clone(this.ptr); ChannelUpdate ret_hu_conv = new ChannelUpdate(null, ret); @@ -50,11 +72,17 @@ public class ChannelUpdate extends CommonBase { return ret_hu_conv; } + /** + * Serialize the ChannelUpdate object into a byte array which can be read by ChannelUpdate_read + */ public byte[] write() { byte[] ret = bindings.ChannelUpdate_write(this.ptr); return ret; } + /** + * Read a ChannelUpdate from a byte array, created by ChannelUpdate_write + */ public static Result_ChannelUpdateDecodeErrorZ constructor_read(byte[] ser) { long ret = bindings.ChannelUpdate_read(ser); Result_ChannelUpdateDecodeErrorZ ret_hu_conv = Result_ChannelUpdateDecodeErrorZ.constr_from_ptr(ret);