Module breez_sdk_core::lightning::util::wakers
Expand description
Utilities which allow users to block on some future notification from LDK. These are
specifically used by ChannelManager
to allow waiting until the ChannelManager
needs to
be re-persisted.
Structs§
- A simple future which can complete once, and calls some callback(s) when it does so.
- A struct which can be used to select across many
Future
s at once without relying on a full async context.
Traits§
- A callback which is called when a
Future
completes.