Packages

  • package root
    Definition Classes
    root
  • package swam
    Definition Classes
    root
  • package runtime

    This package contains all the classes and types related to running WebAssembly modules.

    This package contains all the classes and types related to running WebAssembly modules.

    The entry point for almost all users will be Engine. A typical use of the engine is:

    import swam._
    import text._
    import runtime._
    import exports._
    
    import cats.implicits._
    import cats.effect._
    
    import java.nio.file.Paths
    
    val tcompiler = Compiler[IO]
    val engine = Engine[IO]
    
    for {
      tcompiler <- tcompiler
      engine <- engine
      mod <- engine.compile(/* source of the module */)
      inst <- mod.newInstance()
      f <- inst.exports.function1[Int, Int]("f")
      res <- f(43)
    } yield res
    
    println(res.unsafeRunSync())
    Definition Classes
    swam
  • package wasi
    Definition Classes
    runtime
  • Advice
  • Clockid
  • Errno
  • FdFlags
  • Filetype
  • Fstflags
  • LongFlagsOps
  • Lookupflags
  • Oflags
  • Riflags
  • Rights
  • Roflags
  • Sdflags
  • ShortFlagsOps
  • Signal
  • Wasi
  • WasiException
  • Whence

object Signal extends ByteEnum[Signal]

Source
types.scala
Linear Supertypes
ByteEnum[Signal], ValueEnum[Byte, Signal], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Signal
  2. ByteEnum
  3. ValueEnum
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. final macro def findValues: IndexedSeq[Signal]
    Attributes
    protected
    Definition Classes
    ByteEnum
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. implicit def reader[F[_]](implicit F: MonadError[F, Throwable]): SimpleValueReader[F, Signal]
  16. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  17. def toString(): String
    Definition Classes
    AnyRef → Any
  18. def values: IndexedSeq[Signal]
    Definition Classes
    Signal → ValueEnum
  19. final lazy val valuesToEntriesMap: Map[Byte, Signal]
    Definition Classes
    ValueEnum
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  23. def withValue(i: Byte): Signal
    Definition Classes
    ValueEnum
    Annotations
    @SuppressWarnings()
  24. def withValueEither(i: Byte): Either[NoSuchMember[Byte, ValueEnumEntry[Byte]], Signal]
    Definition Classes
    ValueEnum
  25. def withValueOpt(i: Byte): Option[Signal]
    Definition Classes
    ValueEnum
  26. case object Abrt extends Signal with Product with Serializable
  27. case object Alrm extends Signal with Product with Serializable
  28. case object Bus extends Signal with Product with Serializable
  29. case object Chld extends Signal with Product with Serializable
  30. case object Cont extends Signal with Product with Serializable
  31. case object Fpe extends Signal with Product with Serializable
  32. case object Hup extends Signal with Product with Serializable
  33. case object Ill extends Signal with Product with Serializable
  34. case object Int extends Signal with Product with Serializable
  35. case object Kill extends Signal with Product with Serializable
  36. case object None extends Signal with Product with Serializable
  37. case object Pipe extends Signal with Product with Serializable
  38. case object Poll extends Signal with Product with Serializable
  39. case object Prof extends Signal with Product with Serializable
  40. case object Pwr extends Signal with Product with Serializable
  41. case object Quit extends Signal with Product with Serializable
  42. case object Segv extends Signal with Product with Serializable
  43. case object Stop extends Signal with Product with Serializable
  44. case object Sys extends Signal with Product with Serializable
  45. case object Term extends Signal with Product with Serializable
  46. case object Trap extends Signal with Product with Serializable
  47. case object Tstp extends Signal with Product with Serializable
  48. case object Ttin extends Signal with Product with Serializable
  49. case object Ttou extends Signal with Product with Serializable
  50. case object Urg extends Signal with Product with Serializable
  51. case object Usr1 extends Signal with Product with Serializable
  52. case object Usr2 extends Signal with Product with Serializable
  53. case object Vtalrm extends Signal with Product with Serializable
  54. case object Winch extends Signal with Product with Serializable
  55. case object Xcpu extends Signal with Product with Serializable
  56. case object Xfsz extends Signal with Product with Serializable

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from ByteEnum[Signal]

Inherited from ValueEnum[Byte, Signal]

Inherited from AnyRef

Inherited from Any

Ungrouped