Condition.hx 304 B

12345678910
  1. package flash.concurrent;
  2. @:final @:require(flash11_4) extern class Condition {
  3. var mutex(default,never) : Mutex;
  4. function new(mutex : Mutex) : Void;
  5. function notify() : Void;
  6. function notifyAll() : Void;
  7. function wait(timeout : Float = -1) : Bool;
  8. static var isSupported(default,never) : Bool;
  9. }