文件名称:go-eventemitter:Go的EventEmitter
文件大小:3KB
文件格式:ZIP
更新时间:2024-06-09 00:52:30
Go
去事件发射器 Go的简化EventEmitter。 支持多个侦听器,将字节片传送给侦听器。 仍在制品。 测试和基准 $ go test -v $ go test -bench 用法 package main import ( "fmt" ee "github.com/gleicon/go-eventemitter" "os" "runtime/pprof" "time" ) func printer(wot []byte) { fmt.Println(string(wot)) } func printer2(wot []byte) { fmt.Println("2: ", string(wot)) } func main() { myee := ee.NewEventEmitter() myee.On("jazz"
【文件预览】:
go-eventemitter-master
----.gitignore(10B)
----README.md(966B)
----examples()
--------simple_ee.go(590B)
----eventemitter_test.go(1KB)
----eventemitter.go(723B)