Uses of Enum
org.apache.mina.core.session.IoEventType
Packages that use IoEventType
Package
Description
IoFilters that provide flexible thread model and event queue monitoring interface.
Classes that implement IoFilter and provide the ability for filters to be timed on their performance.
-
Uses of IoEventType in org.apache.mina.core.filterchain
Constructors in org.apache.mina.core.filterchain with parameters of type IoEventTypeModifierConstructorDescriptionIoFilterEvent(IoFilter.NextFilter nextFilter, IoEventType type, IoSession session, Object parameter) Creates a new IoFilterEvent instance -
Uses of IoEventType in org.apache.mina.core.session
Subclasses with type arguments of type IoEventType in org.apache.mina.core.sessionModifier and TypeClassDescriptionenumAnEnumthat represents the type of I/O events and requests.Fields in org.apache.mina.core.session declared as IoEventTypeMethods in org.apache.mina.core.session that return IoEventTypeModifier and TypeMethodDescriptionIoEvent.getType()static IoEventTypeReturns 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 are declared.Constructors in org.apache.mina.core.session with parameters of type IoEventTypeModifierConstructorDescriptionIoEvent(IoEventType type, IoSession session, Object parameter) Creates a new IoEvent -
Uses of IoEventType in org.apache.mina.filter.executor
Fields in org.apache.mina.filter.executor declared as IoEventTypeModifier and TypeFieldDescriptionprivate static final IoEventType[]ExecutorFilter.DEFAULT_EVENT_SETA list of default EventTypes to be handled by the executorFields in org.apache.mina.filter.executor with type parameters of type IoEventTypeModifier and TypeFieldDescriptionprivate EnumSet<IoEventType> ExecutorFilter.eventTypesThe list of handled eventsMethods in org.apache.mina.filter.executor with parameters of type IoEventTypeModifier and TypeMethodDescriptionprivate voidExecutorFilter.init(Executor executor, boolean manageableExecutor, IoEventType... eventTypes) Creates a new instance of ExecutorFilter.private voidExecutorFilter.initEventTypes(IoEventType... eventTypes) Create an EnumSet from an array of EventTypes, and set the associated eventTypes field.Constructors in org.apache.mina.filter.executor with parameters of type IoEventTypeModifierConstructorDescriptionExecutorFilter(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, ThreadFactory threadFactory, IoEventType... eventTypes) (Convenience constructor) Creates a new instance with a newOrderedThreadPoolExecutor.ExecutorFilter(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, ThreadFactory threadFactory, IoEventQueueHandler queueHandler, IoEventType... eventTypes) (Convenience constructor) Creates a new instance with a newOrderedThreadPoolExecutor.ExecutorFilter(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, IoEventType... eventTypes) (Convenience constructor) Creates a new instance with a newOrderedThreadPoolExecutor.ExecutorFilter(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, IoEventQueueHandler queueHandler, IoEventType... eventTypes) (Convenience constructor) Creates a new instance with a newOrderedThreadPoolExecutor.ExecutorFilter(int corePoolSize, int maximumPoolSize, IoEventType... eventTypes) (Convenience constructor) Creates a new instance with a newOrderedThreadPoolExecutor.ExecutorFilter(int maximumPoolSize, IoEventType... eventTypes) (Convenience constructor) Creates a new instance with a newOrderedThreadPoolExecutor.ExecutorFilter(Executor executor, IoEventType... eventTypes) Creates a new instance with the specifiedExecutor.ExecutorFilter(IoEventType... eventTypes) (Convenience constructor) Creates a new instance with a newOrderedThreadPoolExecutor. -
Uses of IoEventType in org.apache.mina.filter.statistic
Methods in org.apache.mina.filter.statistic that return types with arguments of type IoEventTypeModifier and TypeMethodDescriptionProfilerTimerFilter.getEventsToProfile()Return the set ofIoEventTypewhich are profiled.Methods in org.apache.mina.filter.statistic with parameters of type IoEventTypeModifier and TypeMethodDescriptiondoubleProfilerTimerFilter.getAverageTime(IoEventType type) Get the average time for the specified method represented by theIoEventTypelongProfilerTimerFilter.getMaximumTime(IoEventType type) The maximum time the method represented byIoEventTypehas executedlongProfilerTimerFilter.getMinimumTime(IoEventType type) The minimum time the method represented byIoEventTypehas executedlongProfilerTimerFilter.getTotalCalls(IoEventType type) Gets the total number of times the method has been called that is represented by theIoEventTypelongProfilerTimerFilter.getTotalTime(IoEventType type) The total time this method has been executingvoidProfilerTimerFilter.profile(IoEventType type) Set theIoEventTypeto be profiledvoidProfilerTimerFilter.setEventsToProfile(IoEventType... eventTypes) Set the profilers for a list ofIoEventTypeprivate voidProfilerTimerFilter.setProfilers(IoEventType... eventTypes) Create the profilers for a list ofIoEventType.voidProfilerTimerFilter.stopProfile(IoEventType type) Stop profiling anIoEventTypeConstructors in org.apache.mina.filter.statistic with parameters of type IoEventTypeModifierConstructorDescriptionProfilerTimerFilter(TimeUnit timeUnit, IoEventType... eventTypes) Creates a new instance of ProfilerFilter.