amo.modules.simple_publisher

1.1.1 • Public • Published

SimplePublisher

Observer パターンのシンプルな実装

インストール

https://www.npmjs.com/package/amo.modules.simple_publisher

npm install --save-dev amo.modules.simple_publisher

使い方

SimplePublisher = require "amo.modules.simple_publisher"

publisher = SimplePublisher.create()

observer = (a, b, c) ->
  console.log a, b, c

unregister = publisher.register "someEvent", observer

publisher.publish "someEvent", 1, 2, 3    # 1, 2, 3 と表示される

unregister()

publisher.publish "someEvent", 4, 5, 6   # 何も表示されない

Readme

Keywords

none

Package Sidebar

Install

npm i amo.modules.simple_publisher

Weekly Downloads

2

Version

1.1.1

License

ISC

Last publish

Collaborators

  • amo.12937