A  B  C  D  E  F  G  H  I  K  L  M  N  O  P  Q  R  S  T  U  V  W 

E

executeAction(java.lang.String,java.lang.String) - function in top.mrxiaom.overflow.contact.RemoteBot
执行自定义动作详见 Onebot 11 公开 API
executeAction(top.mrxiaom.overflow.action.ActionContext,java.lang.String) - function in top.mrxiaom.overflow.contact.RemoteBot
执行自定义动作详见 Onebot 11 公开 APIgo-cqhttp 公开 API。用例:
// kotlin
val result = onebot.executeAction(
    context = ActionContext.build("get_guild_list") {
        throwExceptions(true)
    },
    params = null
)
// java
String result = onebot.executeAction(
    ActionContext.build("get_guild_list", builder -> {
        builder.throwExceptions(true);
    }),
    null
);
ExtendedMessageSerializerService - class in top.mrxiaom.overflow.spi
额外的消息序列化器,用于处理不同 Onebot 平台的特殊情况
ExtendedMessageSerializerService.Companion - class in top.mrxiaom.overflow.spi.ExtendedMessageSerializerService
 
A  B  C  D  E  F  G  H  I  K  L  M  N  O  P  Q  R  S  T  U  V  W