You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: channel-event-bus/api/channel-event-bus.api
+24-5Lines changed: 24 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -13,11 +13,12 @@ public abstract interface class com/hoc081098/channeleventbus/ChannelEventBus {
13
13
public abstract fun close ()V
14
14
public abstract fun closeKey (Lcom/hoc081098/channeleventbus/ChannelEvent$Key;Ljava/util/Set;)V
15
15
public abstract fun receiveAsFlow (Lcom/hoc081098/channeleventbus/ChannelEvent$Key;)Lkotlinx/coroutines/flow/Flow;
16
-
public abstract fun send (Lcom/hoc081098/channeleventbus/ChannelEvent;)V
16
+
public abstract fun send (Lcom/hoc081098/channeleventbus/ChannelEvent;Lcom/hoc081098/channeleventbus/ChannelEventBusOptionWhenSendingToBusDoesNotExist;)V
17
17
}
18
18
19
19
public final class com/hoc081098/channeleventbus/ChannelEventBus$DefaultImpls {
20
20
public static synthetic fun closeKey$default (Lcom/hoc081098/channeleventbus/ChannelEventBus;Lcom/hoc081098/channeleventbus/ChannelEvent$Key;Ljava/util/Set;ILjava/lang/Object;)V
21
+
public static synthetic fun send$default (Lcom/hoc081098/channeleventbus/ChannelEventBus;Lcom/hoc081098/channeleventbus/ChannelEvent;Lcom/hoc081098/channeleventbus/ChannelEventBusOptionWhenSendingToBusDoesNotExist;ILjava/lang/Object;)V
21
22
}
22
23
23
24
public abstract class com/hoc081098/channeleventbus/ChannelEventBusException : java/lang/RuntimeException {
@@ -44,17 +45,26 @@ public final class com/hoc081098/channeleventbus/ChannelEventBusException$CloseE
44
45
public fun getKey ()Lcom/hoc081098/channeleventbus/ChannelEvent$Key;
45
46
}
46
47
47
-
public final class com/hoc081098/channeleventbus/ChannelEventBusException$FailedToSendEvent : com/hoc081098/channeleventbus/ChannelEventBusException {
48
-
public fun <init> (Lcom/hoc081098/channeleventbus/ChannelEvent;Ljava/lang/Throwable;)V
49
-
public final fun getEvent ()Lcom/hoc081098/channeleventbus/ChannelEvent;
48
+
public final class com/hoc081098/channeleventbus/ChannelEventBusException$FlowAlreadyCollected : com/hoc081098/channeleventbus/ChannelEventBusException {
49
+
public fun <init> (Lcom/hoc081098/channeleventbus/ChannelEvent$Key;)V
50
50
public fun getKey ()Lcom/hoc081098/channeleventbus/ChannelEvent$Key;
51
51
}
52
52
53
-
public final class com/hoc081098/channeleventbus/ChannelEventBusException$FlowAlreadyCollected : com/hoc081098/channeleventbus/ChannelEventBusException {
53
+
public abstract class com/hoc081098/channeleventbus/ChannelEventBusException$SendException : com/hoc081098/channeleventbus/ChannelEventBusException {
54
+
public synthetic fun <init> (Ljava/lang/String;Ljava/lang/Throwable;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
55
+
}
56
+
57
+
public final class com/hoc081098/channeleventbus/ChannelEventBusException$SendException$BusDoesNotExist : com/hoc081098/channeleventbus/ChannelEventBusException$CloseException {
54
58
public fun <init> (Lcom/hoc081098/channeleventbus/ChannelEvent$Key;)V
55
59
public fun getKey ()Lcom/hoc081098/channeleventbus/ChannelEvent$Key;
56
60
}
57
61
62
+
public final class com/hoc081098/channeleventbus/ChannelEventBusException$SendException$FailedToSendEvent : com/hoc081098/channeleventbus/ChannelEventBusException$SendException {
63
+
public fun <init> (Lcom/hoc081098/channeleventbus/ChannelEvent;Ljava/lang/Throwable;)V
64
+
public final fun getEvent ()Lcom/hoc081098/channeleventbus/ChannelEvent;
65
+
public fun getKey ()Lcom/hoc081098/channeleventbus/ChannelEvent$Key;
66
+
}
67
+
58
68
public final class com/hoc081098/channeleventbus/ChannelEventBusKt {
59
69
public static final fun ChannelEventBus (Lcom/hoc081098/channeleventbus/ChannelEventBusLogger;)Lcom/hoc081098/channeleventbus/ChannelEventBus;
60
70
public static synthetic fun ChannelEventBus$default (Lcom/hoc081098/channeleventbus/ChannelEventBusLogger;ILjava/lang/Object;)Lcom/hoc081098/channeleventbus/ChannelEventBus;
@@ -75,6 +85,15 @@ public final class com/hoc081098/channeleventbus/ChannelEventBusLogger$Companion
75
85
public final fun stdout ()Lcom/hoc081098/channeleventbus/ChannelEventBusLogger;
76
86
}
77
87
88
+
public final class com/hoc081098/channeleventbus/ChannelEventBusOptionWhenSendingToBusDoesNotExist : java/lang/Enum {
89
+
public static final field CREATE_NEW_BUS Lcom/hoc081098/channeleventbus/ChannelEventBusOptionWhenSendingToBusDoesNotExist;
90
+
public static final field DO_NOTHING Lcom/hoc081098/channeleventbus/ChannelEventBusOptionWhenSendingToBusDoesNotExist;
91
+
public static final field THROW_EXCEPTION Lcom/hoc081098/channeleventbus/ChannelEventBusOptionWhenSendingToBusDoesNotExist;
92
+
public static fun getEntries ()Lkotlin/enums/EnumEntries;
93
+
public static fun valueOf (Ljava/lang/String;)Lcom/hoc081098/channeleventbus/ChannelEventBusOptionWhenSendingToBusDoesNotExist;
94
+
public static fun values ()[Lcom/hoc081098/channeleventbus/ChannelEventBusOptionWhenSendingToBusDoesNotExist;
95
+
}
96
+
78
97
public final class com/hoc081098/channeleventbus/ChannelEventBusValidationBeforeClosing : java/lang/Enum {
79
98
public static final field ALL Ljava/util/Set;
80
99
public static final field Companion Lcom/hoc081098/channeleventbus/ChannelEventBusValidationBeforeClosing$Companion;
0 commit comments