Package org.ldk.structs
Interface Persister.PersisterInterface
-
- Enclosing class:
- Persister
public static interface Persister.PersisterInterface
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Result_NoneErrorZ
persist_graph(NetworkGraph network_graph)
Persist the given [`NetworkGraph`] to disk, returning an error if persistence failed.Result_NoneErrorZ
persist_manager(ChannelManager channel_manager)
Persist the given ['ChannelManager'] to disk, returning an error if persistence failed.Result_NoneErrorZ
persist_scorer(WriteableScore scorer)
Persist the given [`WriteableScore`] to disk, returning an error if persistence failed.
-
-
-
Method Detail
-
persist_manager
Result_NoneErrorZ persist_manager(ChannelManager channel_manager)
Persist the given ['ChannelManager'] to disk, returning an error if persistence failed.
-
persist_graph
Result_NoneErrorZ persist_graph(NetworkGraph network_graph)
Persist the given [`NetworkGraph`] to disk, returning an error if persistence failed.
-
persist_scorer
Result_NoneErrorZ persist_scorer(WriteableScore scorer)
Persist the given [`WriteableScore`] to disk, returning an error if persistence failed.
-
-