Skip to content

Commit

Permalink
更新文档部分内容
Browse files Browse the repository at this point in the history
  • Loading branch information
ForteScarlet committed Mar 9, 2024
1 parent a87c6fe commit 7517b47
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Writerside/topics/QGBot.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ bot.subscribe { raw ->

```Kotlin
// 注册一个普通的事件处理器,此处理器会接收并处理所有类型的事件
bot.process<AtMessageCreate> {
bot.subscribe<AtMessageCreate> {
if ("stop" in data.content) {
// 终止 bot
bot.cancel()
Expand Down
12 changes: 6 additions & 6 deletions Writerside/topics/QGChannel.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ switcher-label: Java API 风格
> <a href="api_forum.md" /> ,
> 本章节不过多讨论。
## API中的子频道 {id="api-channels"}
## API中的Channel {id="api-channels"}

万物起源于API。你在API模块中会遇到一些用来获取、操作子频道相关的API。

Expand All @@ -25,7 +25,7 @@ switcher-label: Java API 风格
> <a href="api-list.md" />
> [API文档](%api-doc%)
## Stdlib模块中的子频道 {id="stdlib-channels"}
## Stdlib模块中的Channel {id="stdlib-channels"}

当你直接使用标准库模块时,你可以在一些与子频道相关的事件中得到它的信息。

Expand All @@ -36,7 +36,7 @@ switcher-label: Java API 风格
<tab title="Kotlin" group-key="Kotlin">

```Kotlin
bot.process<ChannelCreate> {
bot.subscribe<ChannelCreate> {
val channel: EventChannel = data
}
```
Expand Down Expand Up @@ -67,13 +67,13 @@ bot.subscribe(EventProcessors.block(ChannelCreate.class, (event, raw) -> {
> <a href="event.md" />
> [API文档](%api-doc%)
## 组件库中的子频道 {id="component-channels"}
## 组件库中的QGChannel {id="component-channels"}

组件库模块中,`QGChannel` 类型即为实现了simbot标准API中 `Channel` 类型的实现类型。
它基于stdlib模块的 `Channel` (这个不是指simbot标准API中的 `Channel`)
提供更进一步的功能。

## 获取子频道 {id="get-channels"}
## 获取QGChannel {id="get-channels"}

组件中 `QGChannel` 类型实现了simbot标准API中的 `Channel` 类型,并提供与子频道相关的功能。
如果你想要获取一个 `QGChannel`,你可以在 `QGBot``QGGuild` 或一个与子频道相关的事件中获取。
Expand Down Expand Up @@ -123,7 +123,7 @@ event.getContentReserve()
</tab>
</tabs>

## 子频道类型 {id='channel-types'}
## QGChannel类型 {id='channel-types'}

在QQ频道中,一个子频道可能有多个不同的类型,例如文字、论坛、分组等等。
而在这里面只有使用**文字子频道**才能够发送消息。
Expand Down
2 changes: 1 addition & 1 deletion Writerside/topics/QGGuild.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ API模块中部分用于获取频道信息的API中会返回一些与 `Guild`
<tab title="Kotlin" group-key="Kotlin">

```Kotlin
bot.process<GuildCreate> {
bot.subscribe<GuildCreate> {
val guild: EventGuild = data
}
```
Expand Down
2 changes: 1 addition & 1 deletion Writerside/topics/QGMember.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ switcher-label: Java API 风格
<tab title="Kotlin" group-key="Kotlin">

```Kotlin
bot.process<GuildMemberAdd> {
bot.subscribe<GuildMemberAdd> {
val member: EventMember = data
}
```
Expand Down

0 comments on commit 7517b47

Please sign in to comment.