增大默认event队列大小

This commit is contained in:
boyce
2021-05-12 15:22:36 +08:00
parent f6b61bbf6f
commit 812c7a0717

View File

@@ -7,7 +7,7 @@ import (
"sync"
)
const DefaultEventChannelLen = 10000
const DefaultEventChannelLen = 1000000
//事件接受器
type EventCallBack func(event IEvent)