docs: Fix SKILL.md规范 violations - Remove ## 方法列表 and flatten ### sub-headers in ## 公共方法

This commit is contained in:
2026-03-19 02:01:18 +08:00
parent 8e85fd98b8
commit 5257f3d75c
68 changed files with 718 additions and 1289 deletions

View File

@@ -26,39 +26,15 @@
## 公共方法
### 订阅/退订
| 方法 | 描述 |
|------|------|
| `uint64_t Subscribe(Callback callback)` | 订阅事件,返回订阅 ID |
| `void Unsubscribe(uint64_t id)` | 退订事件(延迟生效) |
| `void ProcessUnsubscribes()` | 处理积压的退订请求 |
| `void Clear()` | 清空所有订阅 |
### 调用
| 方法 | 描述 |
|------|------|
| `void Invoke(Args... args)` | 调用所有订阅的回调 |
### 迭代
| 方法 | 描述 |
|------|------|
| `Iterator begin()` | 获取开始迭代器 |
| `Iterator end()` | 获取结束迭代器 |
## 方法列表
| 方法 | 描述 |
|------|------|
| [Subscribe](Subscribe.md) | 订阅事件回调 |
| [Unsubscribe](Unsubscribe.md) | 退订事件 |
| [ProcessUnsubscribes](ProcessUnsubscribes.md) | 处理积压的退订请求 |
| [Invoke](Invoke.md) | 调用所有订阅的回调 |
| [Clear](Clear.md) | 清空所有订阅 |
| [begin](begin.md) | 获取开始迭代器 |
| [end](end.md) | 获取结束迭代器 |
| [`Subscribe`](Subscribe.md) | 订阅事件回调,返回订阅 ID |
| [`Unsubscribe`](Unsubscribe.md) | 退订事件(延迟生效) |
| [`ProcessUnsubscribes`](ProcessUnsubscribes.md) | 处理积压的退订请求 |
| [`Clear`](Clear.md) | 清空所有订阅 |
| [`Invoke`](Invoke.md) | 调用所有订阅的回调 |
| [`begin`](begin.md) | 获取开始迭代器 |
| [`end`](end.md) | 获取结束迭代器 |
## 使用示例