[Java] Update auto-generated Java bindings
[ldk-java] / src / main / java / org / ldk / structs / RapidGossipSync.java
index bdbaa8d0cbb748f9f959d4e8271264f749008e26..cb5d67015780d8553a9ddea9321b507df2043104 100644 (file)
@@ -9,7 +9,8 @@ import javax.annotation.Nullable;
 
 
 /**
- * Rapid Gossip Sync struct
+ * The main Rapid Gossip Sync object.
+ * 
  * See [crate-level documentation] for usage.
  * 
  * [crate-level documentation]: crate
@@ -24,7 +25,7 @@ public class RapidGossipSync extends CommonBase {
        }
 
        /**
-        * Instantiate a new [`RapidGossipSync`] instance
+        * Instantiate a new [`RapidGossipSync`] instance.
         */
        public static RapidGossipSync of(NetworkGraph network_graph) {
                long ret = bindings.RapidGossipSync_new(network_graph == null ? 0 : network_graph.ptr);
@@ -37,24 +38,24 @@ public class RapidGossipSync extends CommonBase {
        }
 
        /**
-        * Sync gossip data from a file
+        * Update network graph from binary data.
         * Returns the last sync timestamp to be used the next time rapid sync data is queried.
         * 
-        * `network_graph`: The network graph to apply the updates to
+        * `network_graph`: network graph to be updated
         * 
-        * `sync_path`: Path to the file where the gossip update data is located
+        * `update_data`: `&[u8]` binary stream that comprises the update data
         */
-       public Result_u32GraphSyncErrorZ sync_network_graph_with_file_path(java.lang.String sync_path) {
-               long ret = bindings.RapidGossipSync_sync_network_graph_with_file_path(this.ptr, sync_path);
+       public Result_u32GraphSyncErrorZ update_network_graph(byte[] update_data) {
+               long ret = bindings.RapidGossipSync_update_network_graph(this.ptr, update_data);
                Reference.reachabilityFence(this);
-               Reference.reachabilityFence(sync_path);
+               Reference.reachabilityFence(update_data);
                if (ret >= 0 && ret <= 4096) { return null; }
                Result_u32GraphSyncErrorZ ret_hu_conv = Result_u32GraphSyncErrorZ.constr_from_ptr(ret);
                return ret_hu_conv;
        }
 
        /**
-        * Returns whether a rapid gossip sync has completed at least once
+        * Returns whether a rapid gossip sync has completed at least once.
         */
        public boolean is_initial_sync_complete() {
                boolean ret = bindings.RapidGossipSync_is_initial_sync_complete(this.ptr);
@@ -62,21 +63,4 @@ public class RapidGossipSync extends CommonBase {
                return ret;
        }
 
-       /**
-        * Update network graph from binary data.
-        * Returns the last sync timestamp to be used the next time rapid sync data is queried.
-        * 
-        * `network_graph`: network graph to be updated
-        * 
-        * `update_data`: `&[u8]` binary stream that comprises the update data
-        */
-       public Result_u32GraphSyncErrorZ update_network_graph(byte[] update_data) {
-               long ret = bindings.RapidGossipSync_update_network_graph(this.ptr, update_data);
-               Reference.reachabilityFence(this);
-               Reference.reachabilityFence(update_data);
-               if (ret >= 0 && ret <= 4096) { return null; }
-               Result_u32GraphSyncErrorZ ret_hu_conv = Result_u32GraphSyncErrorZ.constr_from_ptr(ret);
-               return ret_hu_conv;
-       }
-
 }