Mutex.hx 228 B

123456789
  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. static var isSupported(default,never) : Bool;
  8. }