class ProgressIndicator
<init> |
ProgressIndicator(project: Project) |
count |
var count: Long |
message |
var message: String |
step |
var step: String |
total |
var total: Long |
increment |
fun increment(): Unitfun increment(message: String): Unitfun <T> increment(message: String, block: () -> T): T |
launch |
fun <T> launch(block: ProgressIndicator.() -> T): T |
reset |
fun reset(): Unit |
update |
fun update(): Unitfun update(message: String): Unit |
updater |
fun updater(updater: ProgressIndicator.() -> Unit): Unit |