kediatR icon indicating copy to clipboard operation
kediatR copied to clipboard

Mediator implementation in Kotlin with native coroutine support

Results 5 kediatR issues
Sort by recently updated
recently updated
newest added

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---|---|---| | [gradle/gradle-build-action](https://togithub.com/gradle/gradle-build-action) | action...

## Config Migration Needed - [ ] Select this checkbox to let Renovate create an automated Config Migration PR. This issue lists Renovate updates and detected dependencies. Read the [Dependency...

Currently, the order for pipeline behaviors is the registration order to the mediator. But, in most of the cases order matters. So, it would be great to define the order...

enhancement

## Option-1, sectioned ```kotlin val mediator = Mediator { pipelineBehaviours { MeasurePipelineBehaviour() } notificationHandlers { register() } queryHandlers { register() } commandHandlers { register() } } ``` ## Option-2, without...

enhancement

Arranging code-base for multi-platform support?