13141516171819
/* 58 */ this.factory = new TimeoutFactory(); /* */ } /* */ /* */ public RunnableScheduler(ThreadPool threadPool) /* */ { /* 66 */ this.factory = new TimeoutFactory(threadPool); /* */ }
71727374757677
// Private -------------------------------------------------------------------------------------- private void createFactory() { ThreadPool threadPool = new BasicThreadPool("Messaging Timeout"); factory = new TimeoutFactory(threadPool); }
53545556575859
/** * Constructs a new runnable scheduler. */ public RunnableScheduler() { this.factory = new TimeoutFactory(); }
61626364656667
/** * Constructs a new runnable scheduler. */ public RunnableScheduler(ThreadPool threadPool) { this.factory = new TimeoutFactory(threadPool); }