org.scalajs.jsenv.phantomjs.PhantomJSEnv

ComPhantomRunner

Related Doc: package PhantomJSEnv

class ComPhantomRunner extends AsyncPhantomRunner with ComJSRunner with WebsocketListener

Attributes
protected
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ComPhantomRunner
  2. WebsocketListener
  3. ComJSRunner
  4. AsyncPhantomRunner
  5. AbstractPhantomRunner
  6. AsyncExtRunner
  7. AsyncJSRunner
  8. AbstractExtRunner
  9. AnyRef
  10. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ComPhantomRunner(classpath: CompleteClasspath, code: VirtualJSFile, logger: Logger, console: JSConsole)

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  5. final def await(atMost: Duration): Unit

    Await completion of the started Run for the duration specified by atMost.

    Await completion of the started Run for the duration specified by atMost. Strictly equivalent to:

    Await.result(future, atMost)
    Definition Classes
    AsyncJSRunner
  6. final def await(): Unit

    Await completion of the started Run.

    Await completion of the started Run. Strictly equivalent to

    Await.result(future, Duration.Inf)
    Definition Classes
    AsyncJSRunner
  7. final def awaitOrStop(atMost: Duration): Unit

    Awaits completion of the started Run for the duration specified by atMost, or force it to stop.

    Awaits completion of the started Run for the duration specified by atMost, or force it to stop.

    If any exception is thrown while awaiting completion (including a TimeoutException, forces the runner to stop by calling stop() before rethrowing the exception.

    Strictly equivalent to:

    try await(atMost)
    finally stop()
    Definition Classes
    AsyncJSRunner
  8. val classpath: CompleteClasspath

    Attributes
    protected
    Definition Classes
    AbstractExtRunner
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def close(): Unit

    Close the communication channel.

    Close the communication channel. Allows the VM to terminate if it is still waiting for callback. The JVM side **must** call close in order to be able to expect termination of the VM.

    Calling stop on a [ComJSRunner]] automatically closes the channel.

    Definition Classes
    ComPhantomRunnerComJSRunner
  11. val code: VirtualJSFile

    Attributes
    protected
    Definition Classes
    AbstractExtRunner
  12. val console: JSConsole

    Attributes
    protected
    Definition Classes
    AbstractExtRunner
  13. def createTmpLauncherFile(): File

    Attributes
    protected
    Definition Classes
    AbstractPhantomRunner
  14. def createTmpWebpage(): File

    Attributes
    protected
    Definition Classes
    AbstractPhantomRunner
  15. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  17. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def future: Future[Unit]

    A future that completes when the associated run has terminated.

    A future that completes when the associated run has terminated.

    Definition Classes
    AsyncExtRunnerAsyncJSRunner
  19. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  20. def getJSFiles(): Seq[VirtualJSFile]

    Get all files that are passed to VM (libraries and code)

    Get all files that are passed to VM (libraries and code)

    Attributes
    protected
    Definition Classes
    AbstractExtRunner
  21. def getLibJSFiles(): Seq[VirtualJSFile]

    Get files that are a library (i.e.

    Get files that are a library (i.e. that do not run anything)

    Attributes
    protected
    Definition Classes
    AbstractExtRunner
  22. def getVMArgs(): Seq[String]

    VM arguments excluding executable.

    VM arguments excluding executable. Override to adapt. Overrider is responsible to add additionalArgs.

    Attributes
    protected
    Definition Classes
    AbstractPhantomRunnerAbstractExtRunner
  23. def getVMEnv(): Map[String, String]

    VM environment.

    VM environment. Override to adapt.

    Default is sys.env and additionalEnv

    Attributes
    protected
    Definition Classes
    AbstractExtRunner
  24. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  25. def initFiles(): Seq[VirtualJSFile]

    PhantomJS doesn't support Function.prototype.bind.

    PhantomJS doesn't support Function.prototype.bind. We polyfill it. https://github.com/ariya/phantomjs/issues/10522

    Attributes
    protected
    Definition Classes
    ComPhantomRunnerAbstractPhantomRunnerAbstractExtRunner
  26. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  27. final def isRunning(): Boolean

    Checks whether this async runner is still running.

    Checks whether this async runner is still running. Strictly equivalent to

    !future.isCompleted
    Definition Classes
    AsyncJSRunner
  28. def log(msg: String): Unit

    Definition Classes
    ComPhantomRunner → WebsocketListener
  29. val logger: Logger

    Attributes
    protected
    Definition Classes
    AbstractExtRunner
  30. val mgr: WebsocketManager

  31. var mgrIsRunning: Boolean

    Attributes
    protected
  32. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  33. final def notify(): Unit

    Definition Classes
    AnyRef
  34. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  35. def onClose(): Unit

    Definition Classes
    ComPhantomRunner → WebsocketListener
  36. def onMessage(msg: String): Unit

    Definition Classes
    ComPhantomRunner → WebsocketListener
  37. def onOpen(): Unit

    Definition Classes
    ComPhantomRunner → WebsocketListener
  38. def onRunning(): Unit

    Definition Classes
    ComPhantomRunner → WebsocketListener
  39. final def pipeToConsole(in: InputStream, console: JSConsole): Unit

    pipe lines from input stream to JSConsole

    pipe lines from input stream to JSConsole

    Attributes
    protected
    Definition Classes
    AbstractExtRunner
  40. final def pipeVMData(vmInst: Process): Unit

    Pipe stdin and stdout from/to VM

    Pipe stdin and stdout from/to VM

    Attributes
    protected
    Definition Classes
    AbstractExtRunner
  41. def receive(timeout: Duration): String

    Blocks until a message is received and returns it.

    Blocks until a message is received and returns it.

    Definition Classes
    ComPhantomRunnerComJSRunner
    Exceptions thrown

    ComClosedException if the channel is closed before a message is received

    scala.concurrent.TimeoutException if the timeout expires before a message is received and the channel is still open

  42. final def receive(): String

    Blocks until a message is received and returns it.

    Blocks until a message is received and returns it.

    Definition Classes
    ComJSRunner
    Exceptions thrown

    ComClosedException if the channel is closed before a message is received

  43. def send(msg: String): Unit

    Send a message to the JS VM.

    Send a message to the JS VM. Throws if the message cannot be sent.

    Definition Classes
    ComPhantomRunnerComJSRunner
  44. final def sendJS(files: Seq[VirtualJSFile], out: Writer): Unit

    send a bunch of JS files to a writer

    send a bunch of JS files to a writer

    Attributes
    protected
    Definition Classes
    AbstractExtRunner
  45. final def sendJS(files: Seq[VirtualJSFile], out: OutputStream): Unit

    send a bunch of JS files to an output stream

    send a bunch of JS files to an output stream

    Attributes
    protected
    Definition Classes
    AbstractExtRunner
  46. def sendVMStdin(out: OutputStream): Unit

    Sends required data to VM Stdin (can throw)

    Sends required data to VM Stdin (can throw)

    Attributes
    protected
    Definition Classes
    AbstractExtRunner
  47. def start(): Future[Unit]

    Start the associated run and returns a Future that completes when the run terminates.

    Start the associated run and returns a Future that completes when the run terminates. The returned Future is equivalent to the one returned by future.

    Definition Classes
    AsyncExtRunnerAsyncJSRunner
  48. def startVM(): Process

    Attributes
    protected
    Definition Classes
    AbstractExtRunner
  49. def stop(): Unit

    Abort the associated run.

    Abort the associated run. Also closes the communication channel.

    Definition Classes
    ComJSRunnerAsyncJSRunner
  50. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  51. def toString(): String

    Definition Classes
    AnyRef → Any
  52. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  53. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  54. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  55. final def waitForVM(vmInst: Process): Unit

    Wait for the VM to terminate, verify exit code

    Wait for the VM to terminate, verify exit code

    Attributes
    protected
    Definition Classes
    AbstractExtRunner
    Exceptions thrown

    NonZeroExitException if VM returned a non-zero code

  56. def writeCodeLauncher(code: VirtualJSFile, out: Writer): Unit

    Attributes
    protected
    Definition Classes
    AbstractPhantomRunner
  57. def writeJSFile(file: VirtualJSFile, writer: Writer): Unit

    In phantom.js, we include JS using HTML

    In phantom.js, we include JS using HTML

    Attributes
    protected
    Definition Classes
    AbstractPhantomRunnerAbstractExtRunner
  58. def writeWebpageLauncher(out: Writer): Unit

    Attributes
    protected
    Definition Classes
    AbstractPhantomRunner

Inherited from WebsocketListener

Inherited from ComJSRunner

Inherited from AsyncPhantomRunner

Inherited from AbstractPhantomRunner

Inherited from AsyncJSRunner

Inherited from AnyRef

Inherited from Any

Ungrouped