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 thatThreadModel
is executed later than theIoFilterChainBuilder
you specified. However, please don't abuse this internal behavior; it can change.
-
-
Field Summary
Fields Modifier and Type Field Description static ThreadModel
MANUAL
AThreadModel
which 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
AThreadModel
which make MINA not manage a thread model at all.
-
-