:kotlin: kediatR 3.1.0 is released! (kediatR is a...
# feed
o
K kediatR 3.1.0 is released! (kediatR is a mediator implementation for Kotlin) Highlights • PipelineBehaviours can be configured with order:
Copy code
class ExceptionPipelineBehavior : PipelineBehavior {
  override val order: Int = PipelineBehavior.HIGHEST_PRECEDENCE
  
  override suspend fun <TRequest, TResponse> handle(
    request: TRequest,
    next: RequestHandlerDelegate<TRequest, TResponse>
  ): TResponse = try {
    next(request)
  } catch (ex: Exception) {
    throw ex
  }
}
• Spring-boot packages are listed according to their version on maven ◦
com.trendyol:kediatr-spring-boot-2x-starter
com.trendyol:kediatr-spring-boot-3x-starter
https://github.com/Trendyol/kediatR/releases/tag/3.1.0