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.

event.go 186 B

123456
  1. package event
  2. type Event[TArgs any] interface {
  3. TryMerge(other Event[TArgs]) bool // 尝试将other任务与自身合并,如果成功返回true
  4. Execute(ctx ExecuteContext[TArgs])
  5. }

公共库

Contributors (1)