Class

org.scalajs.jsenv

RetryingComJSEnv

Related Doc: package jsenv

Permalink

final class RetryingComJSEnv extends ComJSEnv

A RetryingComJSEnv allows to automatically retry if a call to the underlying ComJSRunner fails.

While it protects the JVM side from observing state that differs inbetween runs that have been retried, it assumes that the executed JavaScript code does not have side-effects other than the ones visible through the channel (e.g. writing to a file). It is the users responsibility to ensure this property.

No retrying is performed for synchronous, or normal asynchronous runs.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RetryingComJSEnv
  2. ComJSEnv
  3. AsyncJSEnv
  4. JSEnv
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RetryingComJSEnv(baseEnv: ComJSEnv)

    Permalink
  2. new RetryingComJSEnv(baseEnv: ComJSEnv, maxRetries: Int)

    Permalink

Value Members

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

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

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

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

    Permalink
    Definition Classes
    Any
  5. def asyncRunner(libs: Seq[ResolvedJSDependency], code: VirtualJSFile): AsyncJSRunner

    Permalink
    Definition Classes
    RetryingComJSEnvAsyncJSEnv
  6. final def asyncRunner(code: VirtualJSFile): AsyncJSRunner

    Permalink
    Definition Classes
    AsyncJSEnv
  7. val baseEnv: ComJSEnv

    Permalink
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def comRunner(libs: Seq[ResolvedJSDependency], code: VirtualJSFile): ComJSRunner

    Permalink
    Definition Classes
    RetryingComJSEnvComJSEnv
  10. final def comRunner(code: VirtualJSFile): ComJSRunner

    Permalink
    Definition Classes
    ComJSEnv
  11. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  16. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  17. def jsRunner(libs: Seq[ResolvedJSDependency], code: VirtualJSFile): JSRunner

    Permalink

    Prepare a runner for the code in the virtual file.

    Prepare a runner for the code in the virtual file.

    Definition Classes
    RetryingComJSEnvJSEnv
  18. final def jsRunner(code: VirtualJSFile): JSRunner

    Permalink

    Prepare a runner without any libraries.

    Prepare a runner without any libraries.

    Strictly equivalent to:

    this.jsRunner(Nil, code)
    Definition Classes
    JSEnv
  19. def loadLibs(libs: Seq[ResolvedJSDependency]): ComJSEnv

    Permalink

    Return this JSEnv with the given libraries already loaded.

    Return this JSEnv with the given libraries already loaded.

    The following two are equivalent:

    jsEnv.loadLibs(a).jsRunner(b, c)
    jsEnv.jsRunner(a ++ b, c)
    Definition Classes
    ComJSEnvAsyncJSEnvJSEnv
  20. val maxRetries: Int

    Permalink
  21. def name: String

    Permalink

    Human-readable name for this JSEnv

    Human-readable name for this JSEnv

    Definition Classes
    RetryingComJSEnvJSEnv
  22. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  26. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from ComJSEnv

Inherited from AsyncJSEnv

Inherited from JSEnv

Inherited from AnyRef

Inherited from Any

Ungrouped