Implement the getCallable() method. It should create a Callable<String> object, which contains a String value from the input.
Computer scienceProgramming languagesKotlinConcurrency and parallelismConcurrent programming with threads
Callable and Future
Create a Callable
Report a typo
Write a program in Kotlin
import java.util.concurrent.Callable
fun getCallable(): Callable<String> {
// implement method
}
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.