1
0
mirror of https://github.com/mamoe/mirai.git synced 2025-01-31 03:22:36 +08:00

Update docs

This commit is contained in:
Him188 2020-12-28 19:20:49 +08:00
parent 8ae8bdee64
commit 084e18c204
4 changed files with 6 additions and 6 deletions
mirai-core-api/src/commonMain/kotlin/contact

View File

@ -55,7 +55,7 @@ public interface Contact : ContactOrBot, CoroutineScope {
* @throws MessageTooLargeException 当消息过长时抛出
* @throws IllegalArgumentException 当消息内容为空时抛出 (详见 [Message.isContentEmpty])
*
* @return 消息回执. [引用回复][MessageReceipt.quote]仅群聊 [撤回][MessageReceipt.recall] 这条消息.
* @return 消息回执. [引用][MessageReceipt.quote] [撤回][MessageReceipt.recall] 这条消息.
*/
@JvmBlockingBridge
public suspend fun sendMessage(message: Message): MessageReceipt<Contact>

View File

@ -61,7 +61,7 @@ public interface Friend : User, CoroutineScope {
* @throws MessageTooLargeException 当消息过长时抛出
* @throws IllegalArgumentException 当消息内容为空时抛出 (详见 [Message.isContentEmpty])
*
* @return 消息回执. 进行撤回 ([MessageReceipt.recall])
* @return 消息回执. [引用][MessageReceipt.quote] [撤回][MessageReceipt.recall] 这条消息.
*/
@JvmBlockingBridge
public override suspend fun sendMessage(message: Message): MessageReceipt<Friend>

View File

@ -91,7 +91,7 @@ public interface Member : User {
*
* 单条消息最大可发送 4500 字符或 50 张图片.
*
* 注意: 只可以向 [NormalMember] 发送消息. [AnonymousMember] 发送时将会得到异常.
* 注意: 只可以向 [NormalMember] 发送消息. [AnonymousMember] 发送时将会得到异常 [UnsupportedOperationException].
*
* @see FriendMessagePreSendEvent 当此成员是好友时发送消息前事件
* @see FriendMessagePostSendEvent 当此成员是好友时发送消息后事件
@ -103,8 +103,9 @@ public interface Member : User {
* @throws BotIsBeingMutedException 发送群消息时若 [Bot] 被禁言抛出
* @throws MessageTooLargeException 当消息过长时抛出
* @throws IllegalArgumentException 当消息内容为空时抛出 (详见 [Message.isContentEmpty])
* @throws UnsupportedOperationException 当向 [AnonymousMember] 发送消息时抛出
*
* @return 消息回执. 进行撤回 ([MessageReceipt.recall])
* @return 消息回执. [引用][MessageReceipt.quote] [撤回][MessageReceipt.recall] 这条消息.
*/
public override suspend fun sendMessage(message: Message): MessageReceipt<Member>

View File

@ -66,11 +66,10 @@ public interface User : Contact, UserOrBot, CoroutineScope {
* @see UserMessagePostSendEvent 发送消息后事件
*
* @throws EventCancelledException 当发送消息事件被取消时抛出
* @throws BotIsBeingMutedException 发送群消息时若 [Bot] 被禁言抛出
* @throws MessageTooLargeException 当消息过长时抛出
* @throws IllegalArgumentException 当消息内容为空时抛出 (详见 [Message.isContentEmpty])
*
* @return 消息回执. 进行撤回 ([MessageReceipt.recall])
* @return 消息回执. [引用][MessageReceipt.quote] [撤回][MessageReceipt.recall] 这条消息.
*/
@JvmBlockingBridge
public override suspend fun sendMessage(message: Message): MessageReceipt<User>