From 7517b4799f75afc67a26bd51bd9afa3b28eb9774 Mon Sep 17 00:00:00 2001 From: ForteScarlet Date: Sat, 9 Mar 2024 23:05:31 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=96=87=E6=A1=A3=E9=83=A8?= =?UTF-8?q?=E5=88=86=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Writerside/topics/QGBot.md | 2 +- Writerside/topics/QGChannel.md | 12 ++++++------ Writerside/topics/QGGuild.md | 2 +- Writerside/topics/QGMember.md | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Writerside/topics/QGBot.md b/Writerside/topics/QGBot.md index 019a55d4..2b56374d 100644 --- a/Writerside/topics/QGBot.md +++ b/Writerside/topics/QGBot.md @@ -195,7 +195,7 @@ bot.subscribe { raw -> ```Kotlin // 注册一个普通的事件处理器,此处理器会接收并处理所有类型的事件 -bot.process { +bot.subscribe { if ("stop" in data.content) { // 终止 bot bot.cancel() diff --git a/Writerside/topics/QGChannel.md b/Writerside/topics/QGChannel.md index 6c3e2179..b699dc51 100644 --- a/Writerside/topics/QGChannel.md +++ b/Writerside/topics/QGChannel.md @@ -13,7 +13,7 @@ switcher-label: Java API 风格 > , > 本章节不过多讨论。 -## API中的子频道 {id="api-channels"} +## API中的Channel {id="api-channels"} 万物起源于API。你在API模块中会遇到一些用来获取、操作子频道相关的API。 @@ -25,7 +25,7 @@ switcher-label: Java API 风格 > > 或 [API文档](%api-doc%)。 -## Stdlib模块中的子频道 {id="stdlib-channels"} +## Stdlib模块中的Channel {id="stdlib-channels"} 当你直接使用标准库模块时,你可以在一些与子频道相关的事件中得到它的信息。 @@ -36,7 +36,7 @@ switcher-label: Java API 风格 ```Kotlin -bot.process { +bot.subscribe { val channel: EventChannel = data } ``` @@ -67,13 +67,13 @@ bot.subscribe(EventProcessors.block(ChannelCreate.class, (event, raw) -> { > > 或 [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` 或一个与子频道相关的事件中获取。 @@ -123,7 +123,7 @@ event.getContentReserve() -## 子频道类型 {id='channel-types'} +## QGChannel类型 {id='channel-types'} 在QQ频道中,一个子频道可能有多个不同的类型,例如文字、论坛、分组等等。 而在这里面只有使用**文字子频道**才能够发送消息。 diff --git a/Writerside/topics/QGGuild.md b/Writerside/topics/QGGuild.md index 41279332..2901a111 100644 --- a/Writerside/topics/QGGuild.md +++ b/Writerside/topics/QGGuild.md @@ -26,7 +26,7 @@ API模块中部分用于获取频道信息的API中会返回一些与 `Guild` ```Kotlin -bot.process { +bot.subscribe { val guild: EventGuild = data } ``` diff --git a/Writerside/topics/QGMember.md b/Writerside/topics/QGMember.md index 1cb392e8..e81b3f8b 100644 --- a/Writerside/topics/QGMember.md +++ b/Writerside/topics/QGMember.md @@ -30,7 +30,7 @@ switcher-label: Java API 风格 ```Kotlin -bot.process { +bot.subscribe { val member: EventMember = data } ```