initialized = true;
running = true;
this.server.start(); // start RPC server
this.blockFixer = new BlockFixer(conf);
this.blockFixerThread = new Daemon(this.blockFixer);
this.blockFixerThread.start();
// start the deamon thread to fire polcies appropriately
this.triggerThread = new Daemon(new TriggerMonitor());
this.triggerThread.start();
// start the thread that deletes obsolete parity files
this.purgeMonitor = new PurgeMonitor();
this.purgeThread = new Daemon(purgeMonitor);
this.purgeThread.start();
// start the thread that creates HAR files
this.harThread = new Daemon(new HarMonitor());
this.harThread.start();
}