eventify 0.0.8 copy "eventify: ^0.0.8" to clipboard
eventify: ^0.0.8 copied to clipboard

outdated

An event emitter for dart language. This provides funtionality for an event driven development approach. Extend the EventEmitter in code for providing contextual events in application. This also can [...]

EventEmitter #

EventEmitter for dart. This can be used in any application to register for events and get notified once it is fired.


This library provide mechanism to register for event notifications with emitter or publisher and get notified in the event of an event.

One main advantage of the mehanism is that, it support context from where the subscriber is listening. The context could be any additional data the subscriber is interested in.

Another feature this has is the ability to receive sender information, which could be handy if the subscriber wish to know about the publisher.

Example #

    void performAddition(){

    }

    EventCallback cb = (ev, cont) {
        if (null != ev) {
          switch (ev.eventName) {
            case "add":
              performAddition();
              break;
          }
        }
      };

    EventEmitter emitter = new EventEmitter();
    Listener listener = emitter.on("add", this , cb);

    emitter.emit("add","keyboard",10);


As shown in the above example, it is easy to register for events and get notified once it is triggered.

43
likes
0
pub points
93%
popularity

Publisher

verified publishereventify.biz

An event emitter for dart language. This provides funtionality for an event driven development approach. Extend the EventEmitter in code for providing contextual events in application. This also can be used as a stand alone emitter in-order to emit events, with context data.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on eventify