bf1bd074314f701bcfc41e628c24a291e955522a
[rust-lightning] / lightning / src / util / events.rs
1 // This file is Copyright its original authors, visible in version control
2 // history.
3 //
4 // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
5 // or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7 // You may not use this file except in accordance with one or both of these
8 // licenses.
9
10 //! Events are returned from various bits in the library which indicate some action must be taken
11 //! by the client.
12 //!
13 //! Because we don't have a built-in runtime, it's up to the client to call events at a time in the
14 //! future, as well as generate and broadcast funding transactions handle payment preimages and a
15 //! few other things.
16
17 use chain::keysinterface::SpendableOutputDescriptor;
18 use ln::msgs;
19 use ln::{PaymentPreimage, PaymentHash, PaymentSecret};
20 use routing::network_graph::NetworkUpdate;
21 use util::ser::{Writeable, Writer, MaybeReadable, Readable, VecReadWrapper, VecWriteWrapper};
22
23 use bitcoin::blockdata::script::Script;
24
25 use bitcoin::secp256k1::key::PublicKey;
26
27 use io;
28 use prelude::*;
29 use core::time::Duration;
30 use core::ops::Deref;
31
32 /// Some information provided on receipt of payment depends on whether the payment received is a
33 /// spontaneous payment or a "conventional" lightning payment that's paying an invoice.
34 #[derive(Clone, Debug)]
35 pub enum PaymentPurpose {
36         /// Information for receiving a payment that we generated an invoice for.
37         InvoicePayment {
38                 /// The preimage to the payment_hash, if the payment hash (and secret) were fetched via
39                 /// [`ChannelManager::create_inbound_payment`]. If provided, this can be handed directly to
40                 /// [`ChannelManager::claim_funds`].
41                 ///
42                 /// [`ChannelManager::create_inbound_payment`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment
43                 /// [`ChannelManager::claim_funds`]: crate::ln::channelmanager::ChannelManager::claim_funds
44                 payment_preimage: Option<PaymentPreimage>,
45                 /// The "payment secret". This authenticates the sender to the recipient, preventing a
46                 /// number of deanonymization attacks during the routing process.
47                 /// It is provided here for your reference, however its accuracy is enforced directly by
48                 /// [`ChannelManager`] using the values you previously provided to
49                 /// [`ChannelManager::create_inbound_payment`] or
50                 /// [`ChannelManager::create_inbound_payment_for_hash`].
51                 ///
52                 /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
53                 /// [`ChannelManager::create_inbound_payment`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment
54                 /// [`ChannelManager::create_inbound_payment_for_hash`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment_for_hash
55                 payment_secret: PaymentSecret,
56                 /// This is the `user_payment_id` which was provided to
57                 /// [`ChannelManager::create_inbound_payment_for_hash`] or
58                 /// [`ChannelManager::create_inbound_payment`]. It has no meaning inside of LDK and is
59                 /// simply copied here. It may be used to correlate PaymentReceived events with invoice
60                 /// metadata stored elsewhere.
61                 ///
62                 /// [`ChannelManager::create_inbound_payment`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment
63                 /// [`ChannelManager::create_inbound_payment_for_hash`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment_for_hash
64                 user_payment_id: u64,
65         },
66         /// Because this is a spontaneous payment, the payer generated their own preimage rather than us
67         /// (the payee) providing a preimage.
68         SpontaneousPayment(PaymentPreimage),
69 }
70
71 /// An Event which you should probably take some action in response to.
72 ///
73 /// Note that while Writeable and Readable are implemented for Event, you probably shouldn't use
74 /// them directly as they don't round-trip exactly (for example FundingGenerationReady is never
75 /// written as it makes no sense to respond to it after reconnecting to peers).
76 #[derive(Clone, Debug)]
77 pub enum Event {
78         /// Used to indicate that the client should generate a funding transaction with the given
79         /// parameters and then call ChannelManager::funding_transaction_generated.
80         /// Generated in ChannelManager message handling.
81         /// Note that *all inputs* in the funding transaction must spend SegWit outputs or your
82         /// counterparty can steal your funds!
83         FundingGenerationReady {
84                 /// The random channel_id we picked which you'll need to pass into
85                 /// ChannelManager::funding_transaction_generated.
86                 temporary_channel_id: [u8; 32],
87                 /// The value, in satoshis, that the output should have.
88                 channel_value_satoshis: u64,
89                 /// The script which should be used in the transaction output.
90                 output_script: Script,
91                 /// The value passed in to ChannelManager::create_channel
92                 user_channel_id: u64,
93         },
94         /// Indicates we've received money! Just gotta dig out that payment preimage and feed it to
95         /// ChannelManager::claim_funds to get it....
96         /// Note that if the preimage is not known or the amount paid is incorrect, you should call
97         /// ChannelManager::fail_htlc_backwards to free up resources for this HTLC and avoid
98         /// network congestion.
99         /// The amount paid should be considered 'incorrect' when it is less than or more than twice
100         /// the amount expected.
101         /// If you fail to call either ChannelManager::claim_funds or
102         /// ChannelManager::fail_htlc_backwards within the HTLC's timeout, the HTLC will be
103         /// automatically failed.
104         PaymentReceived {
105                 /// The hash for which the preimage should be handed to the ChannelManager.
106                 payment_hash: PaymentHash,
107                 /// The value, in thousandths of a satoshi, that this payment is for. Note that you must
108                 /// compare this to the expected value before accepting the payment (as otherwise you are
109                 /// providing proof-of-payment for less than the value you expected!).
110                 amt: u64,
111                 /// Information for claiming this received payment, based on whether the purpose of the
112                 /// payment is to pay an invoice or to send a spontaneous payment.
113                 purpose: PaymentPurpose,
114         },
115         /// Indicates an outbound payment we made succeeded (i.e. it made it all the way to its target
116         /// and we got back the payment preimage for it).
117         ///
118         /// Note for MPP payments: in rare cases, this event may be preceded by a `PaymentFailed` event.
119         /// In this situation, you SHOULD treat this payment as having succeeded.
120         PaymentSent {
121                 /// The preimage to the hash given to ChannelManager::send_payment.
122                 /// Note that this serves as a payment receipt, if you wish to have such a thing, you must
123                 /// store it somehow!
124                 payment_preimage: PaymentPreimage,
125         },
126         /// Indicates an outbound payment we made failed. Probably some intermediary node dropped
127         /// something. You may wish to retry with a different route.
128         PaymentFailed {
129                 /// The hash which was given to ChannelManager::send_payment.
130                 payment_hash: PaymentHash,
131                 /// Indicates the payment was rejected for some reason by the recipient. This implies that
132                 /// the payment has failed, not just the route in question. If this is not set, you may
133                 /// retry the payment via a different route.
134                 rejected_by_dest: bool,
135                 /// Any failure information conveyed via the Onion return packet by a node along the failed
136                 /// payment route.
137                 ///
138                 /// Should be applied to the [`NetworkGraph`] so that routing decisions can take into
139                 /// account the update. [`NetGraphMsgHandler`] is capable of doing this.
140                 ///
141                 /// [`NetworkGraph`]: crate::routing::network_graph::NetworkGraph
142                 /// [`NetGraphMsgHandler`]: crate::routing::network_graph::NetGraphMsgHandler
143                 network_update: Option<NetworkUpdate>,
144 #[cfg(test)]
145                 error_code: Option<u16>,
146 #[cfg(test)]
147                 error_data: Option<Vec<u8>>,
148         },
149         /// Used to indicate that ChannelManager::process_pending_htlc_forwards should be called at a
150         /// time in the future.
151         PendingHTLCsForwardable {
152                 /// The minimum amount of time that should be waited prior to calling
153                 /// process_pending_htlc_forwards. To increase the effort required to correlate payments,
154                 /// you should wait a random amount of time in roughly the range (now + time_forwardable,
155                 /// now + 5*time_forwardable).
156                 time_forwardable: Duration,
157         },
158         /// Used to indicate that an output which you should know how to spend was confirmed on chain
159         /// and is now spendable.
160         /// Such an output will *not* ever be spent by rust-lightning, and are not at risk of your
161         /// counterparty spending them due to some kind of timeout. Thus, you need to store them
162         /// somewhere and spend them when you create on-chain transactions.
163         SpendableOutputs {
164                 /// The outputs which you should store as spendable by you.
165                 outputs: Vec<SpendableOutputDescriptor>,
166         },
167         /// This event is generated when a payment has been successfully forwarded through us and a
168         /// forwarding fee earned.
169         PaymentForwarded {
170                 /// The fee, in milli-satoshis, which was earned as a result of the payment.
171                 ///
172                 /// Note that if we force-closed the channel over which we forwarded an HTLC while the HTLC
173                 /// was pending, the amount the next hop claimed will have been rounded down to the nearest
174                 /// whole satoshi. Thus, the fee calculated here may be higher than expected as we still
175                 /// claimed the full value in millisatoshis from the source. In this case,
176                 /// `claim_from_onchain_tx` will be set.
177                 ///
178                 /// If the channel which sent us the payment has been force-closed, we will claim the funds
179                 /// via an on-chain transaction. In that case we do not yet know the on-chain transaction
180                 /// fees which we will spend and will instead set this to `None`. It is possible duplicate
181                 /// `PaymentForwarded` events are generated for the same payment iff `fee_earned_msat` is
182                 /// `None`.
183                 fee_earned_msat: Option<u64>,
184                 /// If this is `true`, the forwarded HTLC was claimed by our counterparty via an on-chain
185                 /// transaction.
186                 claim_from_onchain_tx: bool,
187         },
188 }
189
190 impl Writeable for Event {
191         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
192                 match self {
193                         &Event::FundingGenerationReady { .. } => {
194                                 0u8.write(writer)?;
195                                 // We never write out FundingGenerationReady events as, upon disconnection, peers
196                                 // drop any channels which have not yet exchanged funding_signed.
197                         },
198                         &Event::PaymentReceived { ref payment_hash, ref amt, ref purpose } => {
199                                 1u8.write(writer)?;
200                                 let mut payment_secret = None;
201                                 let mut user_payment_id = None;
202                                 let payment_preimage;
203                                 match &purpose {
204                                         PaymentPurpose::InvoicePayment { payment_preimage: preimage, payment_secret: secret, user_payment_id: id } => {
205                                                 payment_secret = Some(secret);
206                                                 payment_preimage = *preimage;
207                                                 user_payment_id = Some(id);
208                                         },
209                                         PaymentPurpose::SpontaneousPayment(preimage) => {
210                                                 payment_preimage = Some(*preimage);
211                                         }
212                                 }
213                                 write_tlv_fields!(writer, {
214                                         (0, payment_hash, required),
215                                         (2, payment_secret, option),
216                                         (4, amt, required),
217                                         (6, user_payment_id, option),
218                                         (8, payment_preimage, option),
219                                 });
220                         },
221                         &Event::PaymentSent { ref payment_preimage } => {
222                                 2u8.write(writer)?;
223                                 write_tlv_fields!(writer, {
224                                         (0, payment_preimage, required),
225                                 });
226                         },
227                         &Event::PaymentFailed { ref payment_hash, ref rejected_by_dest, ref network_update,
228                                 #[cfg(test)]
229                                 ref error_code,
230                                 #[cfg(test)]
231                                 ref error_data,
232                         } => {
233                                 3u8.write(writer)?;
234                                 #[cfg(test)]
235                                 error_code.write(writer)?;
236                                 #[cfg(test)]
237                                 error_data.write(writer)?;
238                                 write_tlv_fields!(writer, {
239                                         (0, payment_hash, required),
240                                         (1, network_update, option),
241                                         (2, rejected_by_dest, required),
242                                 });
243                         },
244                         &Event::PendingHTLCsForwardable { time_forwardable: _ } => {
245                                 4u8.write(writer)?;
246                                 write_tlv_fields!(writer, {});
247                                 // We don't write the time_fordwardable out at all, as we presume when the user
248                                 // deserializes us at least that much time has elapsed.
249                         },
250                         &Event::SpendableOutputs { ref outputs } => {
251                                 5u8.write(writer)?;
252                                 write_tlv_fields!(writer, {
253                                         (0, VecWriteWrapper(outputs), required),
254                                 });
255                         },
256                         &Event::PaymentForwarded { fee_earned_msat, claim_from_onchain_tx } => {
257                                 7u8.write(writer)?;
258                                 write_tlv_fields!(writer, {
259                                         (0, fee_earned_msat, option),
260                                         (2, claim_from_onchain_tx, required),
261                                 });
262                         },
263                 }
264                 Ok(())
265         }
266 }
267 impl MaybeReadable for Event {
268         fn read<R: io::Read>(reader: &mut R) -> Result<Option<Self>, msgs::DecodeError> {
269                 match Readable::read(reader)? {
270                         0u8 => Ok(None),
271                         1u8 => {
272                                 let f = || {
273                                         let mut payment_hash = PaymentHash([0; 32]);
274                                         let mut payment_preimage = None;
275                                         let mut payment_secret = None;
276                                         let mut amt = 0;
277                                         let mut user_payment_id = None;
278                                         read_tlv_fields!(reader, {
279                                                 (0, payment_hash, required),
280                                                 (2, payment_secret, option),
281                                                 (4, amt, required),
282                                                 (6, user_payment_id, option),
283                                                 (8, payment_preimage, option),
284                                         });
285                                         let purpose = match payment_secret {
286                                                 Some(secret) => PaymentPurpose::InvoicePayment {
287                                                         payment_preimage,
288                                                         payment_secret: secret,
289                                                         user_payment_id: if let Some(id) = user_payment_id {
290                                                                 id
291                                                         } else { return Err(msgs::DecodeError::InvalidValue) }
292                                                 },
293                                                 None if payment_preimage.is_some() => PaymentPurpose::SpontaneousPayment(payment_preimage.unwrap()),
294                                                 None => return Err(msgs::DecodeError::InvalidValue),
295                                         };
296                                         Ok(Some(Event::PaymentReceived {
297                                                 payment_hash,
298                                                 amt,
299                                                 purpose,
300                                         }))
301                                 };
302                                 f()
303                         },
304                         2u8 => {
305                                 let f = || {
306                                         let mut payment_preimage = PaymentPreimage([0; 32]);
307                                         read_tlv_fields!(reader, {
308                                                 (0, payment_preimage, required),
309                                         });
310                                         Ok(Some(Event::PaymentSent {
311                                                 payment_preimage,
312                                         }))
313                                 };
314                                 f()
315                         },
316                         3u8 => {
317                                 let f = || {
318                                         #[cfg(test)]
319                                         let error_code = Readable::read(reader)?;
320                                         #[cfg(test)]
321                                         let error_data = Readable::read(reader)?;
322                                         let mut payment_hash = PaymentHash([0; 32]);
323                                         let mut rejected_by_dest = false;
324                                         let mut network_update = None;
325                                         read_tlv_fields!(reader, {
326                                                 (0, payment_hash, required),
327                                                 (1, network_update, ignorable),
328                                                 (2, rejected_by_dest, required),
329                                         });
330                                         Ok(Some(Event::PaymentFailed {
331                                                 payment_hash,
332                                                 rejected_by_dest,
333                                                 network_update,
334                                                 #[cfg(test)]
335                                                 error_code,
336                                                 #[cfg(test)]
337                                                 error_data,
338                                         }))
339                                 };
340                                 f()
341                         },
342                         4u8 => {
343                                 let f = || {
344                                         read_tlv_fields!(reader, {});
345                                         Ok(Some(Event::PendingHTLCsForwardable {
346                                                 time_forwardable: Duration::from_secs(0)
347                                         }))
348                                 };
349                                 f()
350                         },
351                         5u8 => {
352                                 let f = || {
353                                         let mut outputs = VecReadWrapper(Vec::new());
354                                         read_tlv_fields!(reader, {
355                                                 (0, outputs, required),
356                                         });
357                                         Ok(Some(Event::SpendableOutputs { outputs: outputs.0 }))
358                                 };
359                                 f()
360                         },
361                         7u8 => {
362                                 let f = || {
363                                         let mut fee_earned_msat = None;
364                                         let mut claim_from_onchain_tx = false;
365                                         read_tlv_fields!(reader, {
366                                                 (0, fee_earned_msat, option),
367                                                 (2, claim_from_onchain_tx, required),
368                                         });
369                                         Ok(Some(Event::PaymentForwarded { fee_earned_msat, claim_from_onchain_tx }))
370                                 };
371                                 f()
372                         },
373                         // Versions prior to 0.0.100 did not ignore odd types, instead returning InvalidValue.
374                         x if x % 2 == 1 => Ok(None),
375                         _ => Err(msgs::DecodeError::InvalidValue)
376                 }
377         }
378 }
379
380 /// An event generated by ChannelManager which indicates a message should be sent to a peer (or
381 /// broadcast to most peers).
382 /// These events are handled by PeerManager::process_events if you are using a PeerManager.
383 #[derive(Clone, Debug)]
384 pub enum MessageSendEvent {
385         /// Used to indicate that we've accepted a channel open and should send the accept_channel
386         /// message provided to the given peer.
387         SendAcceptChannel {
388                 /// The node_id of the node which should receive this message
389                 node_id: PublicKey,
390                 /// The message which should be sent.
391                 msg: msgs::AcceptChannel,
392         },
393         /// Used to indicate that we've initiated a channel open and should send the open_channel
394         /// message provided to the given peer.
395         SendOpenChannel {
396                 /// The node_id of the node which should receive this message
397                 node_id: PublicKey,
398                 /// The message which should be sent.
399                 msg: msgs::OpenChannel,
400         },
401         /// Used to indicate that a funding_created message should be sent to the peer with the given node_id.
402         SendFundingCreated {
403                 /// The node_id of the node which should receive this message
404                 node_id: PublicKey,
405                 /// The message which should be sent.
406                 msg: msgs::FundingCreated,
407         },
408         /// Used to indicate that a funding_signed message should be sent to the peer with the given node_id.
409         SendFundingSigned {
410                 /// The node_id of the node which should receive this message
411                 node_id: PublicKey,
412                 /// The message which should be sent.
413                 msg: msgs::FundingSigned,
414         },
415         /// Used to indicate that a funding_locked message should be sent to the peer with the given node_id.
416         SendFundingLocked {
417                 /// The node_id of the node which should receive these message(s)
418                 node_id: PublicKey,
419                 /// The funding_locked message which should be sent.
420                 msg: msgs::FundingLocked,
421         },
422         /// Used to indicate that an announcement_signatures message should be sent to the peer with the given node_id.
423         SendAnnouncementSignatures {
424                 /// The node_id of the node which should receive these message(s)
425                 node_id: PublicKey,
426                 /// The announcement_signatures message which should be sent.
427                 msg: msgs::AnnouncementSignatures,
428         },
429         /// Used to indicate that a series of HTLC update messages, as well as a commitment_signed
430         /// message should be sent to the peer with the given node_id.
431         UpdateHTLCs {
432                 /// The node_id of the node which should receive these message(s)
433                 node_id: PublicKey,
434                 /// The update messages which should be sent. ALL messages in the struct should be sent!
435                 updates: msgs::CommitmentUpdate,
436         },
437         /// Used to indicate that a revoke_and_ack message should be sent to the peer with the given node_id.
438         SendRevokeAndACK {
439                 /// The node_id of the node which should receive this message
440                 node_id: PublicKey,
441                 /// The message which should be sent.
442                 msg: msgs::RevokeAndACK,
443         },
444         /// Used to indicate that a closing_signed message should be sent to the peer with the given node_id.
445         SendClosingSigned {
446                 /// The node_id of the node which should receive this message
447                 node_id: PublicKey,
448                 /// The message which should be sent.
449                 msg: msgs::ClosingSigned,
450         },
451         /// Used to indicate that a shutdown message should be sent to the peer with the given node_id.
452         SendShutdown {
453                 /// The node_id of the node which should receive this message
454                 node_id: PublicKey,
455                 /// The message which should be sent.
456                 msg: msgs::Shutdown,
457         },
458         /// Used to indicate that a channel_reestablish message should be sent to the peer with the given node_id.
459         SendChannelReestablish {
460                 /// The node_id of the node which should receive this message
461                 node_id: PublicKey,
462                 /// The message which should be sent.
463                 msg: msgs::ChannelReestablish,
464         },
465         /// Used to indicate that a channel_announcement and channel_update should be broadcast to all
466         /// peers (except the peer with node_id either msg.contents.node_id_1 or msg.contents.node_id_2).
467         ///
468         /// Note that after doing so, you very likely (unless you did so very recently) want to call
469         /// ChannelManager::broadcast_node_announcement to trigger a BroadcastNodeAnnouncement event.
470         /// This ensures that any nodes which see our channel_announcement also have a relevant
471         /// node_announcement, including relevant feature flags which may be important for routing
472         /// through or to us.
473         BroadcastChannelAnnouncement {
474                 /// The channel_announcement which should be sent.
475                 msg: msgs::ChannelAnnouncement,
476                 /// The followup channel_update which should be sent.
477                 update_msg: msgs::ChannelUpdate,
478         },
479         /// Used to indicate that a node_announcement should be broadcast to all peers.
480         BroadcastNodeAnnouncement {
481                 /// The node_announcement which should be sent.
482                 msg: msgs::NodeAnnouncement,
483         },
484         /// Used to indicate that a channel_update should be broadcast to all peers.
485         BroadcastChannelUpdate {
486                 /// The channel_update which should be sent.
487                 msg: msgs::ChannelUpdate,
488         },
489         /// Used to indicate that a channel_update should be sent to a single peer.
490         /// In contrast to [`Self::BroadcastChannelUpdate`], this is used when the channel is a
491         /// private channel and we shouldn't be informing all of our peers of channel parameters.
492         SendChannelUpdate {
493                 /// The node_id of the node which should receive this message
494                 node_id: PublicKey,
495                 /// The channel_update which should be sent.
496                 msg: msgs::ChannelUpdate,
497         },
498         /// Broadcast an error downstream to be handled
499         HandleError {
500                 /// The node_id of the node which should receive this message
501                 node_id: PublicKey,
502                 /// The action which should be taken.
503                 action: msgs::ErrorAction
504         },
505         /// Query a peer for channels with funding transaction UTXOs in a block range.
506         SendChannelRangeQuery {
507                 /// The node_id of this message recipient
508                 node_id: PublicKey,
509                 /// The query_channel_range which should be sent.
510                 msg: msgs::QueryChannelRange,
511         },
512         /// Request routing gossip messages from a peer for a list of channels identified by
513         /// their short_channel_ids.
514         SendShortIdsQuery {
515                 /// The node_id of this message recipient
516                 node_id: PublicKey,
517                 /// The query_short_channel_ids which should be sent.
518                 msg: msgs::QueryShortChannelIds,
519         },
520         /// Sends a reply to a channel range query. This may be one of several SendReplyChannelRange events
521         /// emitted during processing of the query.
522         SendReplyChannelRange {
523                 /// The node_id of this message recipient
524                 node_id: PublicKey,
525                 /// The reply_channel_range which should be sent.
526                 msg: msgs::ReplyChannelRange,
527         }
528 }
529
530 /// A trait indicating an object may generate message send events
531 pub trait MessageSendEventsProvider {
532         /// Gets the list of pending events which were generated by previous actions, clearing the list
533         /// in the process.
534         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent>;
535 }
536
537 /// A trait indicating an object may generate events.
538 ///
539 /// Events are processed by passing an [`EventHandler`] to [`process_pending_events`].
540 ///
541 /// # Requirements
542 ///
543 /// See [`process_pending_events`] for requirements around event processing.
544 ///
545 /// When using this trait, [`process_pending_events`] will call [`handle_event`] for each pending
546 /// event since the last invocation. The handler must either act upon the event immediately
547 /// or preserve it for later handling.
548 ///
549 /// Note, handlers may call back into the provider and thus deadlocking must be avoided. Be sure to
550 /// consult the provider's documentation on the implication of processing events and how a handler
551 /// may safely use the provider (e.g., see [`ChannelManager::process_pending_events`] and
552 /// [`ChainMonitor::process_pending_events`]).
553 ///
554 /// (C-not implementable) As there is likely no reason for a user to implement this trait on their
555 /// own type(s).
556 ///
557 /// [`process_pending_events`]: Self::process_pending_events
558 /// [`handle_event`]: EventHandler::handle_event
559 /// [`ChannelManager::process_pending_events`]: crate::ln::channelmanager::ChannelManager#method.process_pending_events
560 /// [`ChainMonitor::process_pending_events`]: crate::chain::chainmonitor::ChainMonitor#method.process_pending_events
561 pub trait EventsProvider {
562         /// Processes any events generated since the last call using the given event handler.
563         ///
564         /// Subsequent calls must only process new events. However, handlers must be capable of handling
565         /// duplicate events across process restarts. This may occur if the provider was recovered from
566         /// an old state (i.e., it hadn't been successfully persisted after processing pending events).
567         fn process_pending_events<H: Deref>(&self, handler: H) where H::Target: EventHandler;
568 }
569
570 /// A trait implemented for objects handling events from [`EventsProvider`].
571 pub trait EventHandler {
572         /// Handles the given [`Event`].
573         ///
574         /// See [`EventsProvider`] for details that must be considered when implementing this method.
575         fn handle_event(&self, event: &Event);
576 }
577
578 impl<F> EventHandler for F where F: Fn(&Event) {
579         fn handle_event(&self, event: &Event) {
580                 self(event)
581         }
582 }