Skip to content

Releases: Rasalexman/KDispatcher

1.1.92

Choose a tag to compare

@Rasalexman Rasalexman released this 08 May 08:33

Update version and jitpack builds

1.1.91

Choose a tag to compare

@Rasalexman Rasalexman released this 08 May 07:06

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

1.1.9

Choose a tag to compare

@Rasalexman Rasalexman released this 24 Mar 23:44

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

Choose a tag to compare

@Rasalexman Rasalexman released this 17 Sep 20:11
0b5a2ec

Kotlin 1.4.10

1.1.6

Choose a tag to compare

@Rasalexman Rasalexman released this 27 Jun 12:24
2acd899

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

Choose a tag to compare

@Rasalexman Rasalexman released this 15 Oct 21:24

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

Choose a tag to compare

@Rasalexman Rasalexman released this 14 Jul 22:13

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

1.0.0

Choose a tag to compare

@Rasalexman Rasalexman released this 24 Dec 23:08
30cd7a9

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

0.1.8

Choose a tag to compare

@Rasalexman Rasalexman released this 23 Aug 21:47
  • 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

Choose a tag to compare

@Rasalexman Rasalexman released this 06 Aug 20:56
9a87c71
  • added IKDispatcher.subscribeList for subscribing on the list of events
  • extend example