Mutex.hx 292 B

12345678910
  1. package flash.concurrent;
  2. @:require(flash11_4) extern final class Mutex {
  3. function new() : Void;
  4. function lock() : Void;
  5. function tryLock() : Bool;
  6. function unlock() : Void;
  7. @:flash.property static var isSupported(get,never) : Bool;
  8. private static function get_isSupported() : Bool;
  9. }