You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
123456 |
- package event
-
- type Event[TArgs any] interface {
- TryMerge(other Event[TArgs]) bool // 尝试将other任务与自身合并,如果成功返回true
- Execute(ctx ExecuteContext[TArgs])
- }
|