.registerRecordProcessor(new GreetingProcessor())
.build();
// schedule the engine to start now and run every minute
EasyBatchScheduler easyBatchScheduler = new EasyBatchScheduler(easyBatchEngine);
easyBatchScheduler.scheduleAtWithInterval(new Date(), 1);
easyBatchScheduler.start();
}
}