Mutex.hx 183 B

12345678
  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. }