odeProperties.put("ode.scheduler.queueLength", "100" );
odeProperties.put("ode.scheduler.immediateInterval", "30000" );
odeProperties.put("ode.scheduler.nearFutureInterval", "600000" );
odeProperties.put("ode.scheduler.staleInterval", "100000" );
SimpleScheduler scheduler = new SimpleScheduler(new GUID().toString(),
new JdbcDelegate(_db.getDataSource()),
odeProperties );
scheduler.setExecutorService(_executorService);
scheduler.setTransactionManager(_txMgr);
return scheduler;
}