File tree Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ android {
43
43
dependencies {
44
44
implementation(" net.java.dev.jna:jna:5.12.0@aar" )
45
45
implementation(" org.jetbrains.kotlin:kotlin-stdlib-jdk7" )
46
+ implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4" )
46
47
implementation(" androidx.appcompat:appcompat:1.4.0" )
47
48
implementation(" androidx.core:core-ktx:1.7.0" )
48
49
api(" org.slf4j:slf4j-api:1.7.30" )
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ dependencies {
46
46
47
47
// Use the Kotlin JDK 8 standard library.
48
48
implementation(" org.jetbrains.kotlin:kotlin-stdlib-jdk8" )
49
+ implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4" )
49
50
50
51
implementation(" net.java.dev.jna:jna:5.12.0" )
51
52
}
Original file line number Diff line number Diff line change @@ -43,6 +43,8 @@ interface LDKNode {
43
43
void stop();
44
44
Event? next_event();
45
45
Event wait_next_event();
46
+ [Async]
47
+ Event next_event_async();
46
48
void event_handled();
47
49
PublicKey node_id();
48
50
sequence<SocketAddress>? listening_addresses();
You can’t perform that action at this time.
0 commit comments