Fix broken link in FileWriter documentation

- Removed broken [FileWriter](FileWriter.md) link from 方法列表 section since the constructor is already documented on the main page and FileWriter.md doesn't exist (file is named filewriter.md)

Also includes link fixes from fix_links.py:
- Fixed relative paths in containers documentation
This commit is contained in:
2026-03-19 01:14:22 +08:00
parent 12ae6f561a
commit 7332a2a592
6 changed files with 19 additions and 4 deletions

View File

@@ -76,6 +76,14 @@
| `void CancelAll()` | 取消所有待处理的加载请求 |
| `void Cancel(Core::uint64 requestId)` | 取消指定 ID 的加载请求 |
## 实现说明
**注意**: 当前 `AsyncLoader` 的实现为部分完成状态stub
- `Initialize()` 工作线程数参数被忽略
- `Submit()` 仅将请求加入队列,不进行实际异步加载
- `Update()` 不执行实际加载,直接调用回调返回成功
- `QueueCompleted()``Cancel()` 为空实现
## 使用示例
```cpp