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_NoneIOErrorZpersist_graph(NetworkGraph network_graph)Persist the given [`NetworkGraph`] to disk, returning an error if persistence failed.Result_NoneIOErrorZpersist_manager(ChannelManager channel_manager)Persist the given ['ChannelManager'] to disk, returning an error if persistence failed.Result_NoneIOErrorZpersist_scorer(WriteableScore scorer)Persist the given [`WriteableScore`] to disk, returning an error if persistence failed.
-
-
-
Method Detail
-
persist_manager
Result_NoneIOErrorZ persist_manager(ChannelManager channel_manager)
Persist the given ['ChannelManager'] to disk, returning an error if persistence failed.
-
persist_graph
Result_NoneIOErrorZ persist_graph(NetworkGraph network_graph)
Persist the given [`NetworkGraph`] to disk, returning an error if persistence failed.
-
persist_scorer
Result_NoneIOErrorZ persist_scorer(WriteableScore scorer)
Persist the given [`WriteableScore`] to disk, returning an error if persistence failed.
-
-