GlobalBus<E> class

Глобальная шина сообщений

  • E - тип событий, обычно это enum
  • T - тип сообщения, который будет приниматься/отправляться по каналу
  • Каналы создаются автоматом при первой подписке/отправке сообщений

Constructors

GlobalBus()
Проверяет, есть ли нужный топик в кеше

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
publish<T>(E topic, T data, {String id = ''}) → void
Публикует сообщение
subscribe<T>(E topic, void callback(T data), {String id = ''}) → void
Подписывается на топик
toString() String
A string representation of this object.
inherited
unsubscribeAll() → void
Отписывает всех подписчиков

Operators

operator ==(Object other) bool
The equality operator.
inherited