AbstractEventDispatcherConfiguration
EventDispatcherConfiguration 的基础抽象类,提供 EventDispatcherConfiguration 中基本能力的部分实现或抽象。
See also
Properties
Link copied to clipboard
用于 EventDispatcher 中进行事件调度的协程上下文。每一次事件处理都会被切换至此上下文中。 coroutineContext 会作为调度事件时候使用的调度器, 事件在处理的时候会被切换至此上下文中(例如使用其中的调度器等)。
Link copied to clipboard
Link copied to clipboard
protected open val interceptors: MutableList<Pair<EventInterceptor, ConfigurerFunction<EventInterceptorRegistrationProperties>?>>
Functions
Link copied to clipboard
open override fun addDispatchInterceptor(propertiesConsumer: ConfigurerFunction<EventDispatchInterceptorRegistrationProperties>?, interceptor: EventDispatchInterceptor)
添加一个事件调度拦截器与它可能存在的配置信息。
Link copied to clipboard
open override fun addInterceptor(propertiesConsumer: ConfigurerFunction<EventInterceptorRegistrationProperties>?, interceptor: EventInterceptor)
添加一个拦截器与它可能存在的配置信息。