diff options
author | Andrzej Ratajczak <andrzej.ratajczak98@gmail.com> | 2020-04-06 15:58:55 +0200 |
---|---|---|
committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2020-04-22 13:10:48 +0200 |
commit | 720c50fb7f4bf4ae4b4d4c406cfb958a7fba8ffb (patch) | |
tree | 10869d6dcbd5af8599b2091fc6581ce6b16a47d5 /core/src/main/kotlin/renderers | |
parent | 58126c324c30fff4f65fef7cc72aa715364ef358 (diff) | |
download | dokka-720c50fb7f4bf4ae4b4d4c406cfb958a7fba8ffb.tar.gz dokka-720c50fb7f4bf4ae4b4d4c406cfb958a7fba8ffb.tar.bz2 dokka-720c50fb7f4bf4ae4b4d4c406cfb958a7fba8ffb.zip |
Adds asynchronous rendering
Diffstat (limited to 'core/src/main/kotlin/renderers')
-rw-r--r-- | core/src/main/kotlin/renderers/Renderer.kt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/src/main/kotlin/renderers/Renderer.kt b/core/src/main/kotlin/renderers/Renderer.kt index 10235f21..9d054503 100644 --- a/core/src/main/kotlin/renderers/Renderer.kt +++ b/core/src/main/kotlin/renderers/Renderer.kt @@ -1,7 +1,9 @@ package org.jetbrains.dokka.renderers +import kotlinx.coroutines.CoroutineScope +import kotlinx.coroutines.Job import org.jetbrains.dokka.pages.RootPageNode interface Renderer { - fun render(root: RootPageNode) + fun CoroutineScope.render(root: RootPageNode): Job }
\ No newline at end of file |