Releases: Rasalexman/KDispatcher
Releases · Rasalexman/KDispatcher
Release list
1.1.92
1.1.91
Remove bintray uploading task
remove dokka
Update Kotlin version to 1.4.32
Add JitPack dependencies
1.1.9
Update Kotlin version to 1.4.31
Small code refactoring
There will be an annotation processing for event listener functions in 1.2.0
1.1.7
1.1.6
Fix bug with ConcurrentModificationException when subscribing to listener from handler function
Kotlin version 1.3.72
kdispatcher module fully migrated to kotlin dsl plugin
1.1.3
Added new call function with infix callWith
Kotlin version 1.3.50
refactor of priority parameter in
subscribe(notif: String, priority: Int? = null, noinline sub: Subscriber<T>)subscribeList(notifs: List<String>, priority: Int? = null, noinline sub: Subscriber<T>)
extend documentation
1.0.1
Update Kotlin version to 1.3.41
Remove all android packages from base module
1.0.0
Final stable release with some sequenced functions IKDispatcher.subscribe and IKDispatcher.subscribeList return type IKDispatcher
0.1.8
- min sdk 19
- added
IKDispatcher.subscribe(notif: String, noinline sub: Subscriber<T>)without priority - changed
IKDispatcher.subscribe(notif: String, noinline sub: Subscriber<T>, priority: Int? = null)params sorting - changed
HashMapstoArrayMapsfor better memory improvement - added check
hasSubscribersinIKDispatcher.subscribeListextension method
0.1.7
- added IKDispatcher.subscribeList for subscribing on the list of events
- extend example