-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathmodule-info.java
28 lines (24 loc) · 1019 Bytes
/
module-info.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import kotlinx.coroutines.CoroutineExceptionHandler;
import kotlinx.coroutines.internal.MainDispatcherFactory;
module kotlinx.coroutines.core {
requires transitive kotlin.stdlib;
requires kotlinx.atomicfu;
// these are used by kotlinx.coroutines.debug.internal.AgentPremain
requires static java.instrument; // contains java.lang.instrument.*
requires static jdk.unsupported; // contains sun.misc.Signal
exports kotlinx.coroutines;
exports kotlinx.coroutines.channels;
exports kotlinx.coroutines.debug.internal;
exports kotlinx.coroutines.flow;
exports kotlinx.coroutines.flow.internal;
exports kotlinx.coroutines.future;
exports kotlinx.coroutines.internal;
exports kotlinx.coroutines.intrinsics;
exports kotlinx.coroutines.scheduling;
exports kotlinx.coroutines.selects;
exports kotlinx.coroutines.stream;
exports kotlinx.coroutines.sync;
exports kotlinx.coroutines.time;
uses CoroutineExceptionHandler;
uses MainDispatcherFactory;
}