@PlannedRemoval("1.0.0") abstract class QQ : User, CoroutineScope
QQ 对象.
自 0.39.0 起 mirai 引入 User 作为 Friend 和 Member 的父类, 以备将来支持仅 Friend 可用的 API, 如设置备注.
所有 API 均有二进制兼容.
<init> |
QQ 对象. QQ() |
avatarUrl |
头像下载链接 open val avatarUrl: String |
id |
QQ 号码 abstract val id: Long |
nick |
昵称 abstract val nick: String |
sendMessage |
向这个对象发送消息. abstract suspend fun sendMessage(message: Message): MessageReceipt<QQ> |
nameCardOrNick |
获取非空群名片或昵称. val User.nameCardOrNick: String |
recall |
suspend fun Contact.recall(source: MessageChain): Unit suspend fun Contact.recall(source: MessageSource): Unit |
recallIn |
fun Contact.recallIn(message: MessageChain, millis: Long, coroutineContext: CoroutineContext = EmptyCoroutineContext): Job fun Contact.recallIn(source: MessageSource, millis: Long, coroutineContext: CoroutineContext = EmptyCoroutineContext): Job |
sendImage |
在 Dispatchers.IO 中将图片发送到指定联系人. 不会保存临时文件 suspend fun <C : Contact> C.sendImage(bufferedImage: BufferedImage): MessageReceipt<C>
在 Dispatchers.IO 中下载 URL 到临时文件并将其作为图片发送到指定联系人 suspend fun <C : Contact> C.sendImage(imageUrl: URL): MessageReceipt<C>
在 Dispatchers.IO 中读取 Input 到临时文件并将其作为图片发送到指定联系人 suspend fun <C : Contact> C.sendImage(imageInput: Input): MessageReceipt<C>
在 Dispatchers.IO 中读取 InputStream 到临时文件并将其作为图片发送到指定联系人 suspend fun <C : Contact> C.sendImage(imageStream: InputStream): MessageReceipt<C>
在 Dispatchers.IO 中将文件作为图片发送到指定联系人 suspend fun <C : Contact> C.sendImage(file: File): MessageReceipt<C> |
sendImage |
将图片作为单独的消息发送给 this suspend fun <C : Contact> C.sendImage(image: ExternalImage): MessageReceipt<C> |
uploadImage |
在 Dispatchers.IO 中将图片上传, 但不发送. 不会保存临时文件 suspend fun Contact.uploadImage(bufferedImage: BufferedImage): OfflineImage
在 Dispatchers.IO 中下载 URL 到临时文件并将其作为图片上传, 但不发送 suspend fun Contact.uploadImage(imageUrl: URL): OfflineImage
在 Dispatchers.IO 中读取 Input 到临时文件并将其作为图片上传, 但不发送 suspend fun Contact.uploadImage(imageInput: Input): OfflineImage
在 Dispatchers.IO 中读取 InputStream 到临时文件并将其作为图片上传, 但不发送 suspend fun Contact.uploadImage(imageStream: InputStream): OfflineImage
在 Dispatchers.IO 中将文件作为图片上传, 但不发送 suspend fun Contact.uploadImage(file: File): OfflineImage |
Friend |
好友 对象. 注意: 一个 Friend 实例并不是独立的, 它属于一个 Bot. 它不能被直接构造. 任何时候都应从 Bot.getFriend 或事件中获取. abstract class Friend : QQ, CoroutineScope |
MemberJavaFriendlyAPI |
Member 中为了让 abstract class MemberJavaFriendlyAPI : QQ |