Package net.sourceforge.htmlunit.corejs.javascript

Examples of net.sourceforge.htmlunit.corejs.javascript.Synchronizer


   * spawn(function() {o.f(5);}); Thread[Thread-1,5,main] js> exit entry exit
   */
  @GlobalFunction
  public static Object sync( Context cx, Scriptable thisObj, Object[] args, Function funObj ) {
    if ( args.length == 1 && args[ 0 ] instanceof Function ) {
      return new Synchronizer( (Function) args[ 0 ] );
    }
    else {
      throw reportRuntimeError( "msg.sync.args" );
    }
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.htmlunit.corejs.javascript.Synchronizer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.