public void activateOptions() {
if (connectionSource != null) {
receiverJob = new DBReceiverJob(this);
Scheduler scheduler = LogManager.getSchedulerInstance();
scheduler.schedule(
receiverJob, System.currentTimeMillis() + 500, refreshMillis);
} else {
throw new IllegalStateException(
"DBAppender cannot function without a connection source");
}