文件名称:goevent:goevent 是由 golang 编写的事件调度器
文件大小:6KB
文件格式:ZIP
更新时间:2024-07-20 10:33:46
Go
活动 goevent 是由 golang 编写的事件调度器。 例子 监听事件 e := goevent . New () e . On ( func ( i int , s string ){ fmt . Printf ( "%d: %s \n " , i , s ) }) 扳机 e . Trigger ( 1 , "foo" ) 使用事件表 table := goevent . NewTable () table . On ( "foo" , func ( i int ){ fmt . Printf ( "foo: %d \n " , i ) }) table . On ( "bar" , func ( s string ){ fmt . Printf ( "bar: %s \n " , s ) }) table . Trigger ( "foo" , 1 ) tabl
【文件预览】:
goevent-master
----.travis.yml(293B)
----table.go(1KB)
----errors.go(535B)
----LICENSE(1KB)
----table_test.go(1KB)
----goevent_test.go(3KB)
----goevent.go(3KB)
----README.md(1KB)