In this kotlin example we will cover call a function after a delay. Using Java Timer class we will pause method call after some delay by shedule() method. Here is the example After execute this file first it will print and after 3 seconds will execute methodCallWithDelay() and print "Method called after delay" Output: Hello world!!
package com.example.kotlinexamples
import java.util.Timer
import kotlin.concurrent.schedule
fun main(args: Array<String>) {
// Execution starting point
println("Hello world!!")
// Delay of 5 sec
Timer().schedule(3000){
//calling a function
methodCallWithDelay()
}
}
fun methodCallWithDelay(){
println("Method called after delay")
}
Method called after delay
Article Contributed By :
|
|
|
|
52 Views |