}
@Override
protected void postStart()
{
ScheduleIntrospector introspector = new ScheduleIntrospector();
InjectManager manager = InjectManager.create();
AnnotatedType<T> type = manager.createAnnotatedType(getEjbClass());
ArrayList<TimerTask> timers;
timers = introspector.introspect(new StatelessTimeoutCaller(), type);
if (timers != null) {
for (TimerTask task : timers) {
task.start();
}