Mutex.hx 230 B

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