All Versions
10
Latest Version
Avg Release Cycle
101 days
Latest Release
1317 days ago

Changelog History

  • v1.1.7 Changes

    September 17, 2020

    Kotlin 1.4.10

  • v1.1.6 Changes

    June 27, 2020

    ๐Ÿ›  Fix bug with ConcurrentModificationException when subscribing to listener from handler function
    Kotlin version 1.3.72
    ๐Ÿ”Œ kdispatcher module fully migrated to kotlin dsl plugin

  • v1.1.3 Changes

    October 15, 2019

    โž• 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

  • v1.0.1 Changes

    July 14, 2019

    โšก๏ธ Update Kotlin version to 1.3.41
    โœ‚ Remove all android packages from base module

  • v1.0.0 Changes

    December 24, 2018

    ๐Ÿš€ Final stable release with some sequenced functions IKDispatcher.subscribe and IKDispatcher.subscribeList return type IKDispatcher

  • v0.1.8 Changes

    August 23, 2018
    • 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
  • v0.1.7 Changes

    August 06, 2018
    • โž• added IKDispatcher.subscribeList for subscribing on the list of events
    • extend example
  • v0.1.6 Changes

    July 22, 2018
    • โž• added default value to

      priority: Int? = null

    • โž• added clear array list in IDispatcher.unsubscribe function

  • v0.1.5 Changes

    July 20, 2018

    ๐Ÿ”„ change callback handler params count and type. Now it's a Notification object that holds your data in var and clear after executing the handler.

    • fun IKDispatcher.subscribe now inline with reified generic type for Notification data
    • โšก๏ธ update a simple app example
  • v0.1.1 Changes

    March 22, 2018

    simpify subscribers in KDispatcher