Skip to content

Tags: marcojakob/dart-event-bus

Tags

v2.0.1

Toggle v2.0.1's commit message
Fix version 

v2.0.0

Toggle v2.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #43 from mnordine/nnbd Migrate to null safety.

v1.1.0

Toggle v1.1.0's commit message
Getting ready for v1.1.0 

v1.0.3

Toggle v1.0.3's commit message
Fix repo url 

v1.0.0

Toggle v1.0.0's commit message
Migrate to Dart 2 - BREAKING CHANGE: The `on` method now has a generic type. The type must be passed as a type argument instead of a method parameter. Change `myEventBus.on(MyEventType)` to `myEventBus.on<MyEventType>()`. - BREAKING CHANGE: Every `EventBus` is now hierarchical so that listeners will also receive events of subtypes of the specified type. This is exactly the way that `HierarchicalEventBus` worked. So `HierarchicalEventBus` has been removed. Use the normal `EventBus` instead.

v0.4.1

Toggle v0.4.1's commit message
Fix Issue #13: Improve on() stream when no type is specified 

v0.4.0

Toggle v0.4.0's commit message
Run tests on console 

v0.3.0

Toggle v0.3.0's commit message
Small readme change 

v0.2.4

Toggle v0.2.4's commit message
Update to dart libraries 0.9.0 

0.2.2

Toggle 0.2.2's commit message
Change default of SimpleEventBus to sync (same as factory in EventBus)