jeroendelau/as3-signals
最新稳定版本:v0.8.0
Composer 安装命令:
composer require jeroendelau/as3-signals
包简介
README 文档
README
Signals are light-weight, strongly-typed AS3 messaging tools.
Wire your application with better APIs and less boilerplate than AS3 Events.
Concept
- A Signal is essentially a mini-dispatcher specific to one event, with its own array of listeners.
- A Signal gives an event a concrete membership in a class.
- Listeners subscribe to real objects, not to string-based channels.
- Event string constants are no longer needed.
- Signals are inspired by C# events and signals/slots in Qt.
Syntax
// with EventDispatcher
button.addEventListener(MouseEvent.CLICK, onClick);
// Signal equivalent; past tense is recommended
button.clicked.add(onClicked);
I am still looking for impressions, critiques and suggestions.
My email is robert at robertpenner.com.
I’m @robpenner on Twitter.
Background on AS3 Events
统计信息
- 总下载量: 19
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2015-09-24