|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use IoEventType | |
---|---|
org.apache.mina.common | Common types required for users to use MINA. |
org.apache.mina.filter.executor | An IoFilter that provides flexible thread models |
org.apache.mina.filter.logging | Classes that implement IoFilter and provide logging of the events and data that flows through a MINA-based system. |
org.apache.mina.filter.statistic | Classes that implement IoFilter and provide the ability for filters to be timed on their performance. |
Uses of IoEventType in org.apache.mina.common |
---|
Methods in org.apache.mina.common that return IoEventType | |
---|---|
IoEventType |
IoEvent.getType()
|
static IoEventType |
IoEventType.valueOf(String name)
Returns the enum constant of this type with the specified name. |
static IoEventType[] |
IoEventType.values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Constructors in org.apache.mina.common with parameters of type IoEventType | |
---|---|
IoEvent(IoEventType type,
IoSession session,
Object parameter)
|
|
IoFilterEvent(IoFilter.NextFilter nextFilter,
IoEventType type,
IoSession session,
Object parameter)
|
Uses of IoEventType in org.apache.mina.filter.executor |
---|
Constructors in org.apache.mina.filter.executor with parameters of type IoEventType | |
---|---|
ExecutorFilter(Executor executor,
IoEventType... eventTypes)
Creates a new instance with the specified Executor . |
|
ExecutorFilter(int corePoolSize,
int maximumPoolSize,
IoEventType... eventTypes)
(Convenience constructor) Creates a new instance with a new OrderedThreadPoolExecutor . |
|
ExecutorFilter(int corePoolSize,
int maximumPoolSize,
long keepAliveTime,
TimeUnit unit,
IoEventQueueHandler queueHandler,
IoEventType... eventTypes)
(Convenience constructor) Creates a new instance with a new OrderedThreadPoolExecutor . |
|
ExecutorFilter(int corePoolSize,
int maximumPoolSize,
long keepAliveTime,
TimeUnit unit,
IoEventType... eventTypes)
(Convenience constructor) Creates a new instance with a new OrderedThreadPoolExecutor . |
|
ExecutorFilter(int corePoolSize,
int maximumPoolSize,
long keepAliveTime,
TimeUnit unit,
ThreadFactory threadFactory,
IoEventQueueHandler queueHandler,
IoEventType... eventTypes)
(Convenience constructor) Creates a new instance with a new OrderedThreadPoolExecutor . |
|
ExecutorFilter(int corePoolSize,
int maximumPoolSize,
long keepAliveTime,
TimeUnit unit,
ThreadFactory threadFactory,
IoEventType... eventTypes)
(Convenience constructor) Creates a new instance with a new OrderedThreadPoolExecutor . |
|
ExecutorFilter(int maximumPoolSize,
IoEventType... eventTypes)
(Convenience constructor) Creates a new instance with a new OrderedThreadPoolExecutor . |
|
ExecutorFilter(IoEventType... eventTypes)
(Convenience constructor) Creates a new instance with a new OrderedThreadPoolExecutor . |
Uses of IoEventType in org.apache.mina.filter.logging |
---|
Methods in org.apache.mina.filter.logging with parameters of type IoEventType | |
---|---|
LogLevel |
LoggingFilter.getLogLevel(IoEventType eventType)
Returns the log level for the supplied event type. |
void |
LoggingFilter.setLogLevel(IoEventType eventType,
LogLevel logLevel)
This method sets the log level for the supplied LogLevel
event. |
Uses of IoEventType in org.apache.mina.filter.statistic |
---|
Methods in org.apache.mina.filter.statistic that return types with arguments of type IoEventType | |
---|---|
Set<IoEventType> |
ProfilerTimerFilter.getEventsToProfile()
Return the bitmask that is being used to display timing information for this filter. |
Methods in org.apache.mina.filter.statistic with parameters of type IoEventType | |
---|---|
void |
ProfilerTimerFilter.addEventToProfile(IoEventType type)
Add an IoEventType to profile |
double |
ProfilerTimerFilter.getAverageTime(IoEventType type)
Get the average time for the specified method represented by the IoEventType |
long |
ProfilerTimerFilter.getMaximumTime(IoEventType type)
The maximum time the method represented by IoEventType has executed |
long |
ProfilerTimerFilter.getMinimumTime(IoEventType type)
The minimum time the method represented by IoEventType has executed |
long |
ProfilerTimerFilter.getTotalCalls(IoEventType type)
Gets the total number of times the method has been called that is represented by the IoEventType |
long |
ProfilerTimerFilter.getTotalTime(IoEventType type)
The total time this method has been executing |
void |
ProfilerTimerFilter.removeEventToProfile(IoEventType type)
Remove an IoEventType to profile |
void |
ProfilerTimerFilter.setEventsToProfile(IoEventType firstEventType,
IoEventType... otherEventTypes)
Set the bitmask in order to tell this filter which methods to print out timing information |
void |
ProfilerTimerFilter.setEventsToProfile(IoEventType firstEventType,
IoEventType... otherEventTypes)
Set the bitmask in order to tell this filter which methods to print out timing information |
Method parameters in org.apache.mina.filter.statistic with type arguments of type IoEventType | |
---|---|
void |
ProfilerTimerFilter.setEventsToProfile(Set<IoEventType> eventTypes)
Set the bitmask in order to tell this filter which methods to print out timing information |
Constructors in org.apache.mina.filter.statistic with parameters of type IoEventType | |
---|---|
ProfilerTimerFilter(TimeUnit unit,
IoEventType firstEventType,
IoEventType... otherEventTypes)
Creates a new instance of ProfilerFilter. |
|
ProfilerTimerFilter(TimeUnit unit,
IoEventType firstEventType,
IoEventType... otherEventTypes)
Creates a new instance of ProfilerFilter. |
Constructor parameters in org.apache.mina.filter.statistic with type arguments of type IoEventType | |
---|---|
ProfilerTimerFilter(TimeUnit unit,
EnumSet<IoEventType> eventTypes)
Creates a new instance of ProfilerFilter. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |