Skip to content

Releases: Rasalexman/KDispatcher

1.1.92

08 May 08:33
Compare
Choose a tag to compare

Update version and jitpack builds

1.1.91

08 May 07:06
Compare
Choose a tag to compare

Remove bintray uploading task
remove dokka
Update Kotlin version to 1.4.32
Add JitPack dependencies

1.1.9

24 Mar 23:44
Compare
Choose a tag to compare

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

17 Sep 20:11
0b5a2ec
Compare
Choose a tag to compare

Kotlin 1.4.10

1.1.6

27 Jun 12:24
2acd899
Compare
Choose a tag to compare

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

15 Oct 21:24
Compare
Choose a tag to compare

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

14 Jul 22:13
Compare
Choose a tag to compare

Update Kotlin version to 1.3.41
Remove all android packages from base module

1.0.0

24 Dec 23:08
30cd7a9
Compare
Choose a tag to compare

Final stable release with some sequenced functions IKDispatcher.subscribe and IKDispatcher.subscribeList return type IKDispatcher

0.1.8

23 Aug 21:47
Compare
Choose a tag to compare
  • 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 HashMaps to ArrayMaps for better memory improvement
  • added check hasSubscribers in IKDispatcher.subscribeList extension method

0.1.7

06 Aug 20:56
9a87c71
Compare
Choose a tag to compare
  • added IKDispatcher.subscribeList for subscribing on the list of events
  • extend example