class neko.vm.Thread

Available on all platforms

Class Fields

static function create(callb:Void ->Void):Thread

Creates a new thread that will execute the [callb] function, then exit.

static function current():Thread

Returns the current thread.

static function readMessage(block:Bool):Dynamic

Reads a message from the thread queue. If [block] is true, the function blocks until a message is available. If [block] is false, the function returns [null] if no message is available.

Instance Fields

function sendMessage(msg:Dynamic):Void

Send a message to the thread queue. This message can be readed by using [readMessage].