File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
native/kotlinx-coroutines-core-native/src Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import kotlin.system.*
18
18
* It may optionally implement [Delay] interface and support time-scheduled tasks. It is used by [runBlocking] to
19
19
* continue processing events when invoked from the event dispatch thread.
20
20
*/
21
- public interface EventLoop {
21
+ internal interface EventLoop {
22
22
/* *
23
23
* Processes next event in this event loop.
24
24
*
@@ -34,7 +34,7 @@ public interface EventLoop {
34
34
* Creates a new event loop.
35
35
*/
36
36
@Suppress(" FunctionName" )
37
- public fun EventLoop (parentJob : Job ? = null): CoroutineDispatcher =
37
+ internal fun EventLoop (parentJob : Job ? = null): CoroutineDispatcher =
38
38
EventLoopImpl ().apply {
39
39
if (parentJob != null ) initParentJob(parentJob)
40
40
}
You can’t perform that action at this time.
0 commit comments