Fix maven import of jetbrains annotations
[ldk-java] / ts / structs / ChannelMessageHandler.ts
index 7b1654f5b92416e7b9e4e694a366a829a54a784f..41e892fe341fca0efb1b4a0f102ad02a509990f1 100644 (file)
@@ -62,9 +62,10 @@ import * as bindings from '../bindings' // TODO: figure out location
                                                        arg.handle_funding_locked(their_node_id, msg_hu_conv);
                                                },
 
-                                               handle_shutdown (their_node_id: Uint8Array, msg: number): void {
+                                               handle_shutdown (their_node_id: Uint8Array, their_features: number, msg: number): void {
+                                                       const their_features_hu_conv: InitFeatures = new InitFeatures(null, their_features);
                                                        const msg_hu_conv: Shutdown = new Shutdown(null, msg);
-                                                       arg.handle_shutdown(their_node_id, msg_hu_conv);
+                                                       arg.handle_shutdown(their_node_id, their_features_hu_conv, msg_hu_conv);
                                                },
 
                                                handle_closing_signed (their_node_id: Uint8Array, msg: number): void {
@@ -126,6 +127,11 @@ import * as bindings from '../bindings' // TODO: figure out location
                                                        arg.handle_channel_reestablish(their_node_id, msg_hu_conv);
                                                },
 
+                                               handle_channel_update (their_node_id: Uint8Array, msg: number): void {
+                                                       const msg_hu_conv: ChannelUpdate = new ChannelUpdate(null, msg);
+                                                       arg.handle_channel_update(their_node_id, msg_hu_conv);
+                                               },
+
                                                handle_error (their_node_id: Uint8Array, msg: number): void {
                                                        const msg_hu_conv: ErrorMessage = new ErrorMessage(null, msg);
                                                        arg.handle_error(their_node_id, msg_hu_conv);
@@ -143,7 +149,7 @@ import * as bindings from '../bindings' // TODO: figure out location
                                handle_funding_created(their_node_id: Uint8Array, msg: FundingCreated): void;
                                handle_funding_signed(their_node_id: Uint8Array, msg: FundingSigned): void;
                                handle_funding_locked(their_node_id: Uint8Array, msg: FundingLocked): void;
-                               handle_shutdown(their_node_id: Uint8Array, msg: Shutdown): void;
+                               handle_shutdown(their_node_id: Uint8Array, their_features: InitFeatures, msg: Shutdown): void;
                                handle_closing_signed(their_node_id: Uint8Array, msg: ClosingSigned): void;
                                handle_update_add_htlc(their_node_id: Uint8Array, msg: UpdateAddHTLC): void;
                                handle_update_fulfill_htlc(their_node_id: Uint8Array, msg: UpdateFulfillHTLC): void;
@@ -156,6 +162,7 @@ import * as bindings from '../bindings' // TODO: figure out location
                                peer_disconnected(their_node_id: Uint8Array, no_connection_possible: boolean): void;
                                peer_connected(their_node_id: Uint8Array, msg: Init): void;
                                handle_channel_reestablish(their_node_id: Uint8Array, msg: ChannelReestablish): void;
+                               handle_channel_update(their_node_id: Uint8Array, msg: ChannelUpdate): void;
                                handle_error(their_node_id: Uint8Array, msg: ErrorMessage): void;
                                
             }
@@ -190,8 +197,9 @@ import * as bindings from '../bindings' // TODO: figure out location
                this.ptrs_to.add(msg);
        }
 
-       public void handle_shutdown(Uint8Array their_node_id, Shutdown msg) {
-               bindings.ChannelMessageHandler_handle_shutdown(this.ptr, their_node_id, msg == null ? 0 : msg.ptr & ~1);
+       public void handle_shutdown(Uint8Array their_node_id, InitFeatures their_features, Shutdown msg) {
+               bindings.ChannelMessageHandler_handle_shutdown(this.ptr, their_node_id, their_features == null ? 0 : their_features.ptr & ~1, msg == null ? 0 : msg.ptr & ~1);
+               this.ptrs_to.add(their_features);
                this.ptrs_to.add(msg);
        }
 
@@ -254,6 +262,11 @@ import * as bindings from '../bindings' // TODO: figure out location
                this.ptrs_to.add(msg);
        }
 
+       public void handle_channel_update(Uint8Array their_node_id, ChannelUpdate msg) {
+               bindings.ChannelMessageHandler_handle_channel_update(this.ptr, their_node_id, msg == null ? 0 : msg.ptr & ~1);
+               this.ptrs_to.add(msg);
+       }
+
        public void handle_error(Uint8Array their_node_id, ErrorMessage msg) {
                bindings.ChannelMessageHandler_handle_error(this.ptr, their_node_id, msg == null ? 0 : msg.ptr & ~1);
                this.ptrs_to.add(msg);