[C#] Check in initial auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / MultiThreadedLockableScore.cs
diff --git a/c_sharp/src/org/ldk/structs/MultiThreadedLockableScore.cs b/c_sharp/src/org/ldk/structs/MultiThreadedLockableScore.cs
new file mode 100644 (file)
index 0000000..0a878bd
--- /dev/null
@@ -0,0 +1,67 @@
+using org.ldk.impl;
+using org.ldk.enums;
+using org.ldk.util;
+using System;
+
+namespace org { namespace ldk { namespace structs {
+
+
+/**
+ * A concrete implementation of [`LockableScore`] which supports multi-threading.
+ */
+public class MultiThreadedLockableScore : CommonBase {
+       internal MultiThreadedLockableScore(object _dummy, long ptr) : base(ptr) { }
+       ~MultiThreadedLockableScore() {
+               if (ptr != 0) { bindings.MultiThreadedLockableScore_free(ptr); }
+       }
+
+       /**
+        * Constructs a new LockableScore which calls the relevant methods on this_arg.
+        * This copies the `inner` pointer in this_arg and thus the returned LockableScore must be freed before this_arg is
+        */
+       public LockableScore as_LockableScore() {
+               long ret = bindings.MultiThreadedLockableScore_as_LockableScore(this.ptr);
+               GC.KeepAlive(this);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               LockableScore ret_hu_conv = new LockableScore(null, ret);
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
+               return ret_hu_conv;
+       }
+
+       /**
+        * Serialize the MultiThreadedLockableScore object into a byte array which can be read by MultiThreadedLockableScore_read
+        */
+       public byte[] write() {
+               byte[] ret = bindings.MultiThreadedLockableScore_write(this.ptr);
+               GC.KeepAlive(this);
+               return ret;
+       }
+
+       /**
+        * Constructs a new WriteableScore which calls the relevant methods on this_arg.
+        * This copies the `inner` pointer in this_arg and thus the returned WriteableScore must be freed before this_arg is
+        */
+       public WriteableScore as_WriteableScore() {
+               long ret = bindings.MultiThreadedLockableScore_as_WriteableScore(this.ptr);
+               GC.KeepAlive(this);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               WriteableScore ret_hu_conv = new WriteableScore(null, ret);
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
+               return ret_hu_conv;
+       }
+
+       /**
+        * Creates a new [`MultiThreadedLockableScore`] given an underlying [`Score`].
+        */
+       public static MultiThreadedLockableScore of(org.ldk.structs.Score score) {
+               long ret = bindings.MultiThreadedLockableScore_new(score == null ? 0 : score.ptr);
+               GC.KeepAlive(score);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.MultiThreadedLockableScore ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.MultiThreadedLockableScore(null, ret); }
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(score); };
+               return ret_hu_conv;
+       }
+
+}
+} } }