Update auto-generated bindings to LDK v0.0.99
[ldk-java] / src / main / java / org / ldk / structs / ChannelManager.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5 import org.ldk.util.*;
6 import java.util.Arrays;
7
8
9 /**
10  * Manager which keeps track of a number of channels and sends messages to the appropriate
11  * channel, also tracking HTLC preimages and forwarding onion packets appropriately.
12  * 
13  * Implements ChannelMessageHandler, handling the multi-channel parts and passing things through
14  * to individual Channels.
15  * 
16  * Implements Writeable to write out all channel state to disk. Implies peer_disconnected() for
17  * all peers during write/read (though does not modify this instance, only the instance being
18  * serialized). This will result in any channels which have not yet exchanged funding_created (ie
19  * called funding_transaction_generated for outbound channels).
20  * 
21  * Note that you can be a bit lazier about writing out ChannelManager than you can be with
22  * ChannelMonitors. With ChannelMonitors you MUST write each monitor update out to disk before
23  * returning from chain::Watch::watch_/update_channel, with ChannelManagers, writing updates
24  * happens out-of-band (and will prevent any other ChannelManager operations from occurring during
25  * the serialization process). If the deserialized version is out-of-date compared to the
26  * ChannelMonitors passed by reference to read(), those channels will be force-closed based on the
27  * ChannelMonitor state and no funds will be lost (mod on-chain transaction fees).
28  * 
29  * Note that the deserializer is only implemented for (BlockHash, ChannelManager), which
30  * tells you the last block hash which was block_connect()ed. You MUST rescan any blocks along
31  * the \"reorg path\" (ie call block_disconnected() until you get to a common block and then call
32  * block_connected() to step towards your best block) upon deserialization before using the
33  * object!
34  * 
35  * Note that ChannelManager is responsible for tracking liveness of its channels and generating
36  * ChannelUpdate messages informing peers that the channel is temporarily disabled. To avoid
37  * spam due to quick disconnection/reconnection, updates are not sent until the channel has been
38  * offline for a full minute. In order to track this, you must call
39  * timer_tick_occurred roughly once per minute, though it doesn't have to be perfect.
40  * 
41  * Rather than using a plain ChannelManager, it is preferable to use either a SimpleArcChannelManager
42  * a SimpleRefChannelManager, for conciseness. See their documentation for more details, but
43  * essentially you should default to using a SimpleRefChannelManager, and use a
44  * SimpleArcChannelManager when you require a ChannelManager with a static lifetime, such as when
45  * you're using lightning-net-tokio.
46  */
47 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
48 public class ChannelManager extends CommonBase {
49         ChannelManager(Object _dummy, long ptr) { super(ptr); }
50         @Override @SuppressWarnings("deprecation")
51         protected void finalize() throws Throwable {
52                 super.finalize();
53                 if (ptr != 0) { bindings.ChannelManager_free(ptr); }
54         }
55
56         /**
57          * Constructs a new ChannelManager to hold several channels and route between them.
58          * 
59          * This is the main \"logic hub\" for all channel-related actions, and implements
60          * ChannelMessageHandler.
61          * 
62          * Non-proportional fees are fixed according to our risk using the provided fee estimator.
63          * 
64          * panics if channel_value_satoshis is >= `MAX_FUNDING_SATOSHIS`!
65          * 
66          * Users need to notify the new ChannelManager when a new block is connected or
67          * disconnected using its `block_connected` and `block_disconnected` methods, starting
68          * from after `params.latest_hash`.
69          */
70         public static ChannelManager of(FeeEstimator fee_est, Watch chain_monitor, BroadcasterInterface tx_broadcaster, Logger logger, KeysInterface keys_manager, UserConfig config, ChainParameters params) {
71                 long ret = bindings.ChannelManager_new(fee_est == null ? 0 : fee_est.ptr, chain_monitor == null ? 0 : chain_monitor.ptr, tx_broadcaster == null ? 0 : tx_broadcaster.ptr, logger == null ? 0 : logger.ptr, keys_manager == null ? 0 : keys_manager.ptr, config == null ? 0 : config.ptr & ~1, params == null ? 0 : params.ptr & ~1);
72                 ChannelManager ret_hu_conv = new ChannelManager(null, ret);
73                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
74                 ret_hu_conv.ptrs_to.add(fee_est);
75                 ret_hu_conv.ptrs_to.add(chain_monitor);
76                 ret_hu_conv.ptrs_to.add(tx_broadcaster);
77                 ret_hu_conv.ptrs_to.add(logger);
78                 ret_hu_conv.ptrs_to.add(keys_manager);
79                 ret_hu_conv.ptrs_to.add(config);
80                 ret_hu_conv.ptrs_to.add(params);
81                 return ret_hu_conv;
82         }
83
84         /**
85          * Gets the current configuration applied to all new channels,  as
86          */
87         public UserConfig get_current_default_configuration() {
88                 long ret = bindings.ChannelManager_get_current_default_configuration(this.ptr);
89                 UserConfig ret_hu_conv = new UserConfig(null, ret);
90                 ret_hu_conv.ptrs_to.add(this);
91                 return ret_hu_conv;
92         }
93
94         /**
95          * Creates a new outbound channel to the given remote node and with the given value.
96          * 
97          * user_id will be provided back as user_channel_id in FundingGenerationReady events to allow
98          * tracking of which events correspond with which create_channel call. Note that the
99          * user_channel_id defaults to 0 for inbound channels, so you may wish to avoid using 0 for
100          * user_id here. user_id has no meaning inside of LDK, it is simply copied to events and
101          * otherwise ignored.
102          * 
103          * If successful, will generate a SendOpenChannel message event, so you should probably poll
104          * PeerManager::process_events afterwards.
105          * 
106          * Raises APIError::APIMisuseError when channel_value_satoshis > 2**24 or push_msat is
107          * greater than channel_value_satoshis * 1k or channel_value_satoshis is < 1000.
108          * 
109          * Note that we do not check if you are currently connected to the given peer. If no
110          * connection is available, the outbound `open_channel` message may fail to send, resulting in
111          * the channel eventually being silently forgotten.
112          */
113         public Result_NoneAPIErrorZ create_channel(byte[] their_network_key, long channel_value_satoshis, long push_msat, long user_id, UserConfig override_config) {
114                 long ret = bindings.ChannelManager_create_channel(this.ptr, their_network_key, channel_value_satoshis, push_msat, user_id, override_config == null ? 0 : override_config.ptr & ~1);
115                 Result_NoneAPIErrorZ ret_hu_conv = Result_NoneAPIErrorZ.constr_from_ptr(ret);
116                 this.ptrs_to.add(override_config);
117                 return ret_hu_conv;
118         }
119
120         /**
121          * Gets the list of open channels, in random order. See ChannelDetail field documentation for
122          * more information.
123          */
124         public ChannelDetails[] list_channels() {
125                 long[] ret = bindings.ChannelManager_list_channels(this.ptr);
126                 ChannelDetails[] ret_conv_16_arr = new ChannelDetails[ret.length];
127                 for (int q = 0; q < ret.length; q++) {
128                         long ret_conv_16 = ret[q];
129                         ChannelDetails ret_conv_16_hu_conv = new ChannelDetails(null, ret_conv_16);
130                         ret_conv_16_hu_conv.ptrs_to.add(this);
131                         ret_conv_16_arr[q] = ret_conv_16_hu_conv;
132                 }
133                 return ret_conv_16_arr;
134         }
135
136         /**
137          * Gets the list of usable channels, in random order. Useful as an argument to
138          * get_route to ensure non-announced channels are used.
139          * 
140          * These are guaranteed to have their [`ChannelDetails::is_usable`] value set to true, see the
141          * documentation for [`ChannelDetails::is_usable`] for more info on exactly what the criteria
142          * are.
143          */
144         public ChannelDetails[] list_usable_channels() {
145                 long[] ret = bindings.ChannelManager_list_usable_channels(this.ptr);
146                 ChannelDetails[] ret_conv_16_arr = new ChannelDetails[ret.length];
147                 for (int q = 0; q < ret.length; q++) {
148                         long ret_conv_16 = ret[q];
149                         ChannelDetails ret_conv_16_hu_conv = new ChannelDetails(null, ret_conv_16);
150                         ret_conv_16_hu_conv.ptrs_to.add(this);
151                         ret_conv_16_arr[q] = ret_conv_16_hu_conv;
152                 }
153                 return ret_conv_16_arr;
154         }
155
156         /**
157          * Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
158          * will be accepted on the given channel, and after additional timeout/the closing of all
159          * pending HTLCs, the channel will be closed on chain.
160          * 
161          * May generate a SendShutdown message event on success, which should be relayed.
162          */
163         public Result_NoneAPIErrorZ close_channel(byte[] channel_id) {
164                 long ret = bindings.ChannelManager_close_channel(this.ptr, channel_id);
165                 Result_NoneAPIErrorZ ret_hu_conv = Result_NoneAPIErrorZ.constr_from_ptr(ret);
166                 return ret_hu_conv;
167         }
168
169         /**
170          * Force closes a channel, immediately broadcasting the latest local commitment transaction to
171          * the chain and rejecting new HTLCs on the given channel. Fails if channel_id is unknown to the manager.
172          */
173         public Result_NoneAPIErrorZ force_close_channel(byte[] channel_id) {
174                 long ret = bindings.ChannelManager_force_close_channel(this.ptr, channel_id);
175                 Result_NoneAPIErrorZ ret_hu_conv = Result_NoneAPIErrorZ.constr_from_ptr(ret);
176                 return ret_hu_conv;
177         }
178
179         /**
180          * Force close all channels, immediately broadcasting the latest local commitment transaction
181          * for each to the chain and rejecting new HTLCs on each.
182          */
183         public void force_close_all_channels() {
184                 bindings.ChannelManager_force_close_all_channels(this.ptr);
185         }
186
187         /**
188          * Sends a payment along a given route.
189          * 
190          * Value parameters are provided via the last hop in route, see documentation for RouteHop
191          * fields for more info.
192          * 
193          * Note that if the payment_hash already exists elsewhere (eg you're sending a duplicative
194          * payment), we don't do anything to stop you! We always try to ensure that if the provided
195          * next hop knows the preimage to payment_hash they can claim an additional amount as
196          * specified in the last hop in the route! Thus, you should probably do your own
197          * payment_preimage tracking (which you should already be doing as they represent \"proof of
198          * payment\") and prevent double-sends yourself.
199          * 
200          * May generate SendHTLCs message(s) event on success, which should be relayed.
201          * 
202          * Each path may have a different return value, and PaymentSendValue may return a Vec with
203          * each entry matching the corresponding-index entry in the route paths, see
204          * PaymentSendFailure for more info.
205          * 
206          * In general, a path may raise:
207          * APIError::RouteError when an invalid route or forwarding parameter (cltv_delta, fee,
208          * node public key) is specified.
209          * APIError::ChannelUnavailable if the next-hop channel is not available for updates
210          * (including due to previous monitor update failure or new permanent monitor update
211          * failure).
212          * APIError::MonitorUpdateFailed if a new monitor update failure prevented sending the
213          * relevant updates.
214          * 
215          * Note that depending on the type of the PaymentSendFailure the HTLC may have been
216          * irrevocably committed to on our end. In such a case, do NOT retry the payment with a
217          * different route unless you intend to pay twice!
218          * 
219          * payment_secret is unrelated to payment_hash (or PaymentPreimage) and exists to authenticate
220          * the sender to the recipient and prevent payment-probing (deanonymization) attacks. For
221          * newer nodes, it will be provided to you in the invoice. If you do not have one, the Route
222          * must not contain multiple paths as multi-path payments require a recipient-provided
223          * payment_secret.
224          * If a payment_secret *is* provided, we assume that the invoice had the payment_secret feature
225          * bit set (either as required or as available). If multiple paths are present in the Route,
226          * we assume the invoice had the basic_mpp feature set.
227          */
228         public Result_NonePaymentSendFailureZ send_payment(Route route, byte[] payment_hash, byte[] payment_secret) {
229                 long ret = bindings.ChannelManager_send_payment(this.ptr, route == null ? 0 : route.ptr & ~1, payment_hash, payment_secret);
230                 Result_NonePaymentSendFailureZ ret_hu_conv = Result_NonePaymentSendFailureZ.constr_from_ptr(ret);
231                 this.ptrs_to.add(route);
232                 return ret_hu_conv;
233         }
234
235         /**
236          * Call this upon creation of a funding transaction for the given channel.
237          * 
238          * Returns an [`APIError::APIMisuseError`] if the funding_transaction spent non-SegWit outputs
239          * or if no output was found which matches the parameters in [`Event::FundingGenerationReady`].
240          * 
241          * Panics if a funding transaction has already been provided for this channel.
242          * 
243          * May panic if the output found in the funding transaction is duplicative with some other
244          * channel (note that this should be trivially prevented by using unique funding transaction
245          * keys per-channel).
246          * 
247          * Do NOT broadcast the funding transaction yourself. When we have safely received our
248          * counterparty's signature the funding transaction will automatically be broadcast via the
249          * [`BroadcasterInterface`] provided when this `ChannelManager` was constructed.
250          * 
251          * Note that this includes RBF or similar transaction replacement strategies - lightning does
252          * not currently support replacing a funding transaction on an existing channel. Instead,
253          * create a new channel with a conflicting funding transaction.
254          * 
255          * [`Event::FundingGenerationReady`]: crate::util::events::Event::FundingGenerationReady
256          */
257         public Result_NoneAPIErrorZ funding_transaction_generated(byte[] temporary_channel_id, byte[] funding_transaction) {
258                 long ret = bindings.ChannelManager_funding_transaction_generated(this.ptr, temporary_channel_id, funding_transaction);
259                 Result_NoneAPIErrorZ ret_hu_conv = Result_NoneAPIErrorZ.constr_from_ptr(ret);
260                 return ret_hu_conv;
261         }
262
263         /**
264          * Regenerates channel_announcements and generates a signed node_announcement from the given
265          * arguments, providing them in corresponding events via
266          * [`get_and_clear_pending_msg_events`], if at least one public channel has been confirmed
267          * on-chain. This effectively re-broadcasts all channel announcements and sends our node
268          * announcement to ensure that the lightning P2P network is aware of the channels we have and
269          * our network addresses.
270          * 
271          * `rgb` is a node \"color\" and `alias` is a printable human-readable string to describe this
272          * node to humans. They carry no in-protocol meaning.
273          * 
274          * `addresses` represent the set (possibly empty) of socket addresses on which this node
275          * accepts incoming connections. These will be included in the node_announcement, publicly
276          * tying these addresses together and to this node. If you wish to preserve user privacy,
277          * addresses should likely contain only Tor Onion addresses.
278          * 
279          * Panics if `addresses` is absurdly large (more than 500).
280          * 
281          * [`get_and_clear_pending_msg_events`]: MessageSendEventsProvider::get_and_clear_pending_msg_events
282          */
283         public void broadcast_node_announcement(byte[] rgb, byte[] alias, NetAddress[] addresses) {
284                 bindings.ChannelManager_broadcast_node_announcement(this.ptr, rgb, alias, Arrays.stream(addresses).mapToLong(addresses_conv_12 -> addresses_conv_12.ptr).toArray());
285                 /* TODO 2 NetAddress  */;
286         }
287
288         /**
289          * Processes HTLCs which are pending waiting on random forward delay.
290          * 
291          * Should only really ever be called in response to a PendingHTLCsForwardable event.
292          * Will likely generate further events.
293          */
294         public void process_pending_htlc_forwards() {
295                 bindings.ChannelManager_process_pending_htlc_forwards(this.ptr);
296         }
297
298         /**
299          * If a peer is disconnected we mark any channels with that peer as 'disabled'.
300          * After some time, if channels are still disabled we need to broadcast a ChannelUpdate
301          * to inform the network about the uselessness of these channels.
302          * 
303          * This method handles all the details, and must be called roughly once per minute.
304          * 
305          * Note that in some rare cases this may generate a `chain::Watch::update_channel` call.
306          */
307         public void timer_tick_occurred() {
308                 bindings.ChannelManager_timer_tick_occurred(this.ptr);
309         }
310
311         /**
312          * Indicates that the preimage for payment_hash is unknown or the received amount is incorrect
313          * after a PaymentReceived event, failing the HTLC back to its origin and freeing resources
314          * along the path (including in our own channel on which we received it).
315          * Returns false if no payment was found to fail backwards, true if the process of failing the
316          * HTLC backwards has been started.
317          */
318         public boolean fail_htlc_backwards(byte[] payment_hash) {
319                 boolean ret = bindings.ChannelManager_fail_htlc_backwards(this.ptr, payment_hash);
320                 return ret;
321         }
322
323         /**
324          * Provides a payment preimage in response to a PaymentReceived event, returning true and
325          * generating message events for the net layer to claim the payment, if possible. Thus, you
326          * should probably kick the net layer to go send messages if this returns true!
327          * 
328          * Note that if you did not set an `amount_msat` when calling [`create_inbound_payment`] or
329          * [`create_inbound_payment_for_hash`] you must check that the amount in the `PaymentReceived`
330          * event matches your expectation. If you fail to do so and call this method, you may provide
331          * the sender \"proof-of-payment\" when they did not fulfill the full expected payment.
332          * 
333          * May panic if called except in response to a PaymentReceived event.
334          * 
335          * [`create_inbound_payment`]: Self::create_inbound_payment
336          * [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
337          */
338         public boolean claim_funds(byte[] payment_preimage) {
339                 boolean ret = bindings.ChannelManager_claim_funds(this.ptr, payment_preimage);
340                 return ret;
341         }
342
343         /**
344          * Gets the node_id held by this ChannelManager
345          */
346         public byte[] get_our_node_id() {
347                 byte[] ret = bindings.ChannelManager_get_our_node_id(this.ptr);
348                 return ret;
349         }
350
351         /**
352          * Restores a single, given channel to normal operation after a
353          * ChannelMonitorUpdateErr::TemporaryFailure was returned from a channel monitor update
354          * operation.
355          * 
356          * All ChannelMonitor updates up to and including highest_applied_update_id must have been
357          * fully committed in every copy of the given channels' ChannelMonitors.
358          * 
359          * Note that there is no effect to calling with a highest_applied_update_id other than the
360          * current latest ChannelMonitorUpdate and one call to this function after multiple
361          * ChannelMonitorUpdateErr::TemporaryFailures is fine. The highest_applied_update_id field
362          * exists largely only to prevent races between this and concurrent update_monitor calls.
363          * 
364          * Thus, the anticipated use is, at a high level:
365          * 1) You register a chain::Watch with this ChannelManager,
366          * 2) it stores each update to disk, and begins updating any remote (eg watchtower) copies of
367          * said ChannelMonitors as it can, returning ChannelMonitorUpdateErr::TemporaryFailures
368          * any time it cannot do so instantly,
369          * 3) update(s) are applied to each remote copy of a ChannelMonitor,
370          * 4) once all remote copies are updated, you call this function with the update_id that
371          * completed, and once it is the latest the Channel will be re-enabled.
372          */
373         public void channel_monitor_updated(OutPoint funding_txo, long highest_applied_update_id) {
374                 bindings.ChannelManager_channel_monitor_updated(this.ptr, funding_txo == null ? 0 : funding_txo.ptr & ~1, highest_applied_update_id);
375                 this.ptrs_to.add(funding_txo);
376         }
377
378         /**
379          * Gets a payment secret and payment hash for use in an invoice given to a third party wishing
380          * to pay us.
381          * 
382          * This differs from [`create_inbound_payment_for_hash`] only in that it generates the
383          * [`PaymentHash`] and [`PaymentPreimage`] for you, returning the first and storing the second.
384          * 
385          * The [`PaymentPreimage`] will ultimately be returned to you in the [`PaymentReceived`], which
386          * will have the [`PaymentReceived::payment_preimage`] field filled in. That should then be
387          * passed directly to [`claim_funds`].
388          * 
389          * See [`create_inbound_payment_for_hash`] for detailed documentation on behavior and requirements.
390          * 
391          * [`claim_funds`]: Self::claim_funds
392          * [`PaymentReceived`]: events::Event::PaymentReceived
393          * [`PaymentReceived::payment_preimage`]: events::Event::PaymentReceived::payment_preimage
394          * [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
395          */
396         public TwoTuple<byte[], byte[]> create_inbound_payment(Option_u64Z min_value_msat, int invoice_expiry_delta_secs, long user_payment_id) {
397                 long ret = bindings.ChannelManager_create_inbound_payment(this.ptr, min_value_msat.ptr, invoice_expiry_delta_secs, user_payment_id);
398                 byte[] ret_a = bindings.LDKC2Tuple_PaymentHashPaymentSecretZ_get_a(ret);
399                 byte[] ret_b = bindings.LDKC2Tuple_PaymentHashPaymentSecretZ_get_b(ret);
400                 TwoTuple<byte[], byte[]> ret_conv = new TwoTuple<byte[], byte[]>(ret_a, ret_b, () -> {
401                         bindings.C2Tuple_PaymentHashPaymentSecretZ_free(ret);
402                 });
403                 return ret_conv;
404         }
405
406         /**
407          * Gets a [`PaymentSecret`] for a given [`PaymentHash`], for which the payment preimage is
408          * stored external to LDK.
409          * 
410          * A [`PaymentReceived`] event will only be generated if the [`PaymentSecret`] matches a
411          * payment secret fetched via this method or [`create_inbound_payment`], and which is at least
412          * the `min_value_msat` provided here, if one is provided.
413          * 
414          * The [`PaymentHash`] (and corresponding [`PaymentPreimage`]) must be globally unique. This
415          * method may return an Err if another payment with the same payment_hash is still pending.
416          * 
417          * `user_payment_id` will be provided back in [`PaymentReceived::user_payment_id`] events to
418          * allow tracking of which events correspond with which calls to this and
419          * [`create_inbound_payment`]. `user_payment_id` has no meaning inside of LDK, it is simply
420          * copied to events and otherwise ignored. It may be used to correlate PaymentReceived events
421          * with invoice metadata stored elsewhere.
422          * 
423          * `min_value_msat` should be set if the invoice being generated contains a value. Any payment
424          * received for the returned [`PaymentHash`] will be required to be at least `min_value_msat`
425          * before a [`PaymentReceived`] event will be generated, ensuring that we do not provide the
426          * sender \"proof-of-payment\" unless they have paid the required amount.
427          * 
428          * `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
429          * in excess of the current time. This should roughly match the expiry time set in the invoice.
430          * After this many seconds, we will remove the inbound payment, resulting in any attempts to
431          * pay the invoice failing. The BOLT spec suggests 3,600 secs as a default validity time for
432          * invoices when no timeout is set.
433          * 
434          * Note that we use block header time to time-out pending inbound payments (with some margin
435          * to compensate for the inaccuracy of block header timestamps). Thus, in practice we will
436          * accept a payment and generate a [`PaymentReceived`] event for some time after the expiry.
437          * If you need exact expiry semantics, you should enforce them upon receipt of
438          * [`PaymentReceived`].
439          * 
440          * Pending inbound payments are stored in memory and in serialized versions of this
441          * [`ChannelManager`]. If potentially unbounded numbers of inbound payments may exist and
442          * space is limited, you may wish to rate-limit inbound payment creation.
443          * 
444          * May panic if `invoice_expiry_delta_secs` is greater than one year.
445          * 
446          * Note that invoices generated for inbound payments should have their `min_final_cltv_expiry`
447          * set to at least [`MIN_FINAL_CLTV_EXPIRY`].
448          * 
449          * [`create_inbound_payment`]: Self::create_inbound_payment
450          * [`PaymentReceived`]: events::Event::PaymentReceived
451          * [`PaymentReceived::user_payment_id`]: events::Event::PaymentReceived::user_payment_id
452          */
453         public Result_PaymentSecretAPIErrorZ create_inbound_payment_for_hash(byte[] payment_hash, Option_u64Z min_value_msat, int invoice_expiry_delta_secs, long user_payment_id) {
454                 long ret = bindings.ChannelManager_create_inbound_payment_for_hash(this.ptr, payment_hash, min_value_msat.ptr, invoice_expiry_delta_secs, user_payment_id);
455                 Result_PaymentSecretAPIErrorZ ret_hu_conv = Result_PaymentSecretAPIErrorZ.constr_from_ptr(ret);
456                 return ret_hu_conv;
457         }
458
459         /**
460          * Constructs a new MessageSendEventsProvider which calls the relevant methods on this_arg.
461          * This copies the `inner` pointer in this_arg and thus the returned MessageSendEventsProvider must be freed before this_arg is
462          */
463         public MessageSendEventsProvider as_MessageSendEventsProvider() {
464                 long ret = bindings.ChannelManager_as_MessageSendEventsProvider(this.ptr);
465                 MessageSendEventsProvider ret_hu_conv = new MessageSendEventsProvider(null, ret);
466                 ret_hu_conv.ptrs_to.add(this);
467                 return ret_hu_conv;
468         }
469
470         /**
471          * Constructs a new EventsProvider which calls the relevant methods on this_arg.
472          * This copies the `inner` pointer in this_arg and thus the returned EventsProvider must be freed before this_arg is
473          */
474         public EventsProvider as_EventsProvider() {
475                 long ret = bindings.ChannelManager_as_EventsProvider(this.ptr);
476                 EventsProvider ret_hu_conv = new EventsProvider(null, ret);
477                 ret_hu_conv.ptrs_to.add(this);
478                 return ret_hu_conv;
479         }
480
481         /**
482          * Constructs a new Listen which calls the relevant methods on this_arg.
483          * This copies the `inner` pointer in this_arg and thus the returned Listen must be freed before this_arg is
484          */
485         public Listen as_Listen() {
486                 long ret = bindings.ChannelManager_as_Listen(this.ptr);
487                 Listen ret_hu_conv = new Listen(null, ret);
488                 ret_hu_conv.ptrs_to.add(this);
489                 return ret_hu_conv;
490         }
491
492         /**
493          * Constructs a new Confirm which calls the relevant methods on this_arg.
494          * This copies the `inner` pointer in this_arg and thus the returned Confirm must be freed before this_arg is
495          */
496         public Confirm as_Confirm() {
497                 long ret = bindings.ChannelManager_as_Confirm(this.ptr);
498                 Confirm ret_hu_conv = new Confirm(null, ret);
499                 ret_hu_conv.ptrs_to.add(this);
500                 return ret_hu_conv;
501         }
502
503         /**
504          * Blocks until ChannelManager needs to be persisted or a timeout is reached. It returns a bool
505          * indicating whether persistence is necessary. Only one listener on
506          * `await_persistable_update` or `await_persistable_update_timeout` is guaranteed to be woken
507          * up.
508          * Note that the feature `allow_wallclock_use` must be enabled to use this function.
509          */
510         public boolean await_persistable_update_timeout(long max_wait) {
511                 boolean ret = bindings.ChannelManager_await_persistable_update_timeout(this.ptr, max_wait);
512                 return ret;
513         }
514
515         /**
516          * Blocks until ChannelManager needs to be persisted. Only one listener on
517          * `await_persistable_update` or `await_persistable_update_timeout` is guaranteed to be woken
518          * up.
519          */
520         public void await_persistable_update() {
521                 bindings.ChannelManager_await_persistable_update(this.ptr);
522         }
523
524         /**
525          * Gets the latest best block which was connected either via the [`chain::Listen`] or
526          * [`chain::Confirm`] interfaces.
527          */
528         public BestBlock current_best_block() {
529                 long ret = bindings.ChannelManager_current_best_block(this.ptr);
530                 BestBlock ret_hu_conv = new BestBlock(null, ret);
531                 ret_hu_conv.ptrs_to.add(this);
532                 return ret_hu_conv;
533         }
534
535         /**
536          * Constructs a new ChannelMessageHandler which calls the relevant methods on this_arg.
537          * This copies the `inner` pointer in this_arg and thus the returned ChannelMessageHandler must be freed before this_arg is
538          */
539         public ChannelMessageHandler as_ChannelMessageHandler() {
540                 long ret = bindings.ChannelManager_as_ChannelMessageHandler(this.ptr);
541                 ChannelMessageHandler ret_hu_conv = new ChannelMessageHandler(null, ret);
542                 ret_hu_conv.ptrs_to.add(this);
543                 return ret_hu_conv;
544         }
545
546         /**
547          * Serialize the ChannelManager object into a byte array which can be read by ChannelManager_read
548          */
549         public byte[] write() {
550                 byte[] ret = bindings.ChannelManager_write(this.ptr);
551                 return ret;
552         }
553
554 }