abstract
class
CoroutineT extends Thread
Instance Constructors
-
new
CoroutineT()
Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: Any): Boolean
-
final
def
asInstanceOf[T0]: T0
-
final
def
checkAccess(): Unit
-
def
clone(): AnyRef
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
finalize(): Unit
-
final
def
getClass(): Class[_]
-
def
getContextClassLoader(): ClassLoader
-
def
getId(): Long
-
final
def
getName(): String
-
final
def
getPriority(): Int
-
def
getStackTrace(): Array[StackTraceElement]
-
def
getState(): State
-
final
def
getThreadGroup(): ThreadGroup
-
def
getUncaughtExceptionHandler(): UncaughtExceptionHandler
-
def
hashCode(): Int
-
def
interrupt(): Unit
-
final
def
isAlive(): Boolean
-
final
def
isDaemon(): Boolean
-
final
def
isInstanceOf[T0]: Boolean
-
def
isInterrupted(): Boolean
-
final
def
join(): Unit
-
final
def
join(arg0: Long, arg1: Int): Unit
-
final
def
join(arg0: Long): Unit
-
final
def
ne(arg0: AnyRef): Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
def
rresume(): Unit
-
def
run(): Unit
-
def
setContextClassLoader(arg0: ClassLoader): Unit
-
final
def
setDaemon(arg0: Boolean): Unit
-
final
def
setName(arg0: String): Unit
-
final
def
setPriority(arg0: Int): Unit
-
def
setUncaughtExceptionHandler(arg0: UncaughtExceptionHandler): Unit
-
def
start(): Unit
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
-
def
yyield(other: CoroutineT, quit: Boolean = false): Unit
Deprecated Value Members
-
def
countStackFrames(): Int
-
def
destroy(): Unit
-
final
def
resume(): Unit
-
final
def
stop(arg0: Throwable): Unit
-
final
def
stop(): Unit
-
final
def
suspend(): Unit
Inherited from Thread
Inherited from Runnable
Inherited from AnyRef
Inherited from Any
The
CoroutineT
class supports quasi-concurrent programming. A coroutine runs/acts until it yields control to some other coroutine. When resumed, a coroutines continues execution where it left off.