20: Prepare background refresher thread

This commit is contained in:
2026-06-28 18:19:20 +02:00
parent d216c06ba1
commit 5e5f8ebd51
@@ -14,8 +14,18 @@ public final class JupiterPerpsEntryPriceVariableRefreshWatcher {
}
public void start() {
Thread thread = new Thread(
this::run,
"jupiter-perps-entry-price-variable-refresh-watcher"
);
thread.setDaemon(true);
thread.start();
}
private void run() {
System.out.println(
"Jupiter Perps entry price variable refresh watcher configured for directory: "
"Jupiter Perps entry price variable refresh watcher started for directory: "
+ confDirectory
);
}