mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-02-13 18:55:52 +00:00
JavaDoc for WalletFiles constructor.
This commit is contained in:
parent
feca024107
commit
1dd64534d0
@ -65,6 +65,11 @@ public class WalletFiles {
|
|||||||
void onAfterAutoSave(File newlySavedFile);
|
void onAfterAutoSave(File newlySavedFile);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize atomic and optionally delayed writing of the wallet file to disk. Note the initial wallet state isn't
|
||||||
|
* saved automatically. The {@link Wallet} calls {@link #saveNow()} or {@link #saveLater()} as wallet state changes,
|
||||||
|
* depending on the urgency of the changes.
|
||||||
|
*/
|
||||||
public WalletFiles(final Wallet wallet, File file, long delay, TimeUnit delayTimeUnit) {
|
public WalletFiles(final Wallet wallet, File file, long delay, TimeUnit delayTimeUnit) {
|
||||||
// An executor that starts up threads when needed and shuts them down later.
|
// An executor that starts up threads when needed and shuts them down later.
|
||||||
this.executor = new ScheduledThreadPoolExecutor(1, new ContextPropagatingThreadFactory("Wallet autosave thread", Thread.MIN_PRIORITY));
|
this.executor = new ScheduledThreadPoolExecutor(1, new ContextPropagatingThreadFactory("Wallet autosave thread", Thread.MIN_PRIORITY));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user