Package nablarch.fw.invoker
Interface ExecutorServiceFactory
- All Known Implementing Classes:
AbstractExecutorServiceFactory
,FixedExecutorServiceFactory
ExecutorService
を生成するためのファクトリインタフェース。-
Method Summary
Modifier and TypeMethodDescriptionExecutorService
を取得する。void
シャットダウンを行う。void
シャットダウンを開始する。 このメソッド起動後は、以降の要求は受け付けられない。
-
Method Details
-
getExecutorService
ExecutorService getExecutorService()ExecutorService
を取得する。- Returns:
ExecutorService
-
startShutdownService
void startShutdownService()シャットダウンを開始する。 このメソッド起動後は、以降の要求は受け付けられない。 -
shutdownService
void shutdownService()シャットダウンを行う。
-