Thread
class cpp.vm.ThreadAvailable in cpp
var handle(default,null) : ThreadHandle
function sendMessage( msg : Dynamic ) : VoidSend a message to the thread queue. This message can be readed by using
readMessage
.
static function create( callb : Void -> Void ) : ThreadCreates a new thread that will execute the callb
function, then exit.
static function current() : ThreadReturns the current thread.
static function readMessage( block : Bool ) : DynamicReads 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.
version #14454, modified 2012-07-16 12:21:40 by api
0 comment