org.scalajs.jsenv

RetryingComJSEnv

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
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RetryingComJSEnv(baseEnv: ComJSEnv)

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

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

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

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

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

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

    Definition Classes
    AsyncJSEnv
  9. val baseEnv: ComJSEnv

  10. def clone(): AnyRef

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

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

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

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

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

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

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

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

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

    Prepare a runner for the code in the virtual file.

    Prepare a runner for the code in the virtual file.

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

    Prepare a runner without any libraries.

    Prepare a runner without any libraries.

    Strictly equivalent to:

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

    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
  22. val maxRetries: Int

  23. def name: String

    Human-readable name for this JSEnv

    Human-readable name for this JSEnv

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

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

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

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

    Definition Classes
    AnyRef
  28. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from ComJSEnv

Inherited from AsyncJSEnv

Inherited from JSEnv

Inherited from AnyRef

Inherited from Any

Ungrouped