|
| 1 | +public abstract interface class love/forte/simbot/ability/AcceptOption { |
| 2 | +} |
| 3 | + |
| 4 | +public abstract interface class love/forte/simbot/ability/AcceptSupport { |
| 5 | + public abstract synthetic fun accept (Lkotlin/coroutines/Continuation;)Ljava/lang/Object; |
| 6 | + public synthetic fun accept ([Llove/forte/simbot/ability/AcceptOption;Lkotlin/coroutines/Continuation;)Ljava/lang/Object; |
| 7 | + public static synthetic fun accept$suspendImpl (Llove/forte/simbot/ability/AcceptSupport;[Llove/forte/simbot/ability/AcceptOption;Lkotlin/coroutines/Continuation;)Ljava/lang/Object; |
| 8 | + public fun acceptAsync ()Ljava/util/concurrent/CompletableFuture; |
| 9 | + public fun acceptAsync ([Llove/forte/simbot/ability/AcceptOption;)Ljava/util/concurrent/CompletableFuture; |
| 10 | + public fun acceptBlocking ()V |
| 11 | + public fun acceptBlocking ([Llove/forte/simbot/ability/AcceptOption;)V |
| 12 | + public fun acceptReserve ()Llove/forte/simbot/suspendrunner/reserve/SuspendReserve; |
| 13 | + public fun acceptReserve ([Llove/forte/simbot/ability/AcceptOption;)Llove/forte/simbot/suspendrunner/reserve/SuspendReserve; |
| 14 | +} |
| 15 | + |
1 | 16 | public abstract interface class love/forte/simbot/ability/CompletionAware {
|
2 | 17 | public abstract fun onCompletion (Llove/forte/simbot/ability/OnCompletion;)V
|
3 | 18 | }
|
@@ -47,6 +62,21 @@ public abstract interface class love/forte/simbot/ability/OnCompletion {
|
47 | 62 | public abstract fun invoke (Ljava/lang/Throwable;)V
|
48 | 63 | }
|
49 | 64 |
|
| 65 | +public abstract interface class love/forte/simbot/ability/RejectOption { |
| 66 | +} |
| 67 | + |
| 68 | +public abstract interface class love/forte/simbot/ability/RejectSupport { |
| 69 | + public abstract synthetic fun reject (Lkotlin/coroutines/Continuation;)Ljava/lang/Object; |
| 70 | + public synthetic fun reject ([Llove/forte/simbot/ability/RejectOption;Lkotlin/coroutines/Continuation;)Ljava/lang/Object; |
| 71 | + public static synthetic fun reject$suspendImpl (Llove/forte/simbot/ability/RejectSupport;[Llove/forte/simbot/ability/RejectOption;Lkotlin/coroutines/Continuation;)Ljava/lang/Object; |
| 72 | + public fun rejectAsync ()Ljava/util/concurrent/CompletableFuture; |
| 73 | + public fun rejectAsync ([Llove/forte/simbot/ability/RejectOption;)Ljava/util/concurrent/CompletableFuture; |
| 74 | + public fun rejectBlocking ()V |
| 75 | + public fun rejectBlocking ([Llove/forte/simbot/ability/RejectOption;)V |
| 76 | + public fun rejectReserve ()Llove/forte/simbot/suspendrunner/reserve/SuspendReserve; |
| 77 | + public fun rejectReserve ([Llove/forte/simbot/ability/RejectOption;)Llove/forte/simbot/suspendrunner/reserve/SuspendReserve; |
| 78 | +} |
| 79 | + |
50 | 80 | public abstract interface class love/forte/simbot/ability/ReplySupport {
|
51 | 81 | public abstract synthetic fun reply (Ljava/lang/String;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
|
52 | 82 | public abstract synthetic fun reply (Llove/forte/simbot/message/Message;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
|
@@ -1572,7 +1602,7 @@ public abstract interface class love/forte/simbot/event/OrganizationSourceEvent
|
1572 | 1602 | public abstract synthetic fun source (Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
|
1573 | 1603 | }
|
1574 | 1604 |
|
1575 |
| -public abstract interface class love/forte/simbot/event/RequestEvent : love/forte/simbot/event/BotEvent { |
| 1605 | +public abstract interface class love/forte/simbot/event/RequestEvent : love/forte/simbot/ability/AcceptSupport, love/forte/simbot/ability/RejectSupport, love/forte/simbot/event/BotEvent { |
1576 | 1606 | public abstract synthetic fun accept (Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
|
1577 | 1607 | public fun acceptAsync ()Ljava/util/concurrent/CompletableFuture;
|
1578 | 1608 | public fun acceptBlocking ()V
|
|
0 commit comments