Package org.apache.mina.common
Interface ThreadModel
-
- All Superinterfaces:
IoFilterChainBuilder
- All Known Implementing Classes:
ExecutorThreadModel
public interface ThreadModel extends IoFilterChainBuilder
Represents a thread model of anIoService. There's no essential difference fromIoFilterChainBuilder. The only difference is thatThreadModelis executed later than theIoFilterChainBuilderyou specified. However, please don't abuse this internal behavior; it can change.
-
-
Field Summary
Fields Modifier and Type Field Description static ThreadModelMANUALAThreadModelwhich make MINA not manage a thread model at all.-
Fields inherited from interface org.apache.mina.common.IoFilterChainBuilder
NOOP
-
-
Method Summary
-
Methods inherited from interface org.apache.mina.common.IoFilterChainBuilder
buildFilterChain
-
-
-
-
Field Detail
-
MANUAL
static final ThreadModel MANUAL
AThreadModelwhich make MINA not manage a thread model at all.
-
-