Packages

  • package root
    Definition Classes
    root
  • package se
    Definition Classes
    root
  • package sics
    Definition Classes
    se
  • package kompics
    Definition Classes
    sics
  • package sl

    This package contains the Scala DSL for Kompics.

    This package contains the Scala DSL for Kompics.

    It is recommended to import this as import se.sics.kompics.sl._, since it contains a number of implicit conversions and convenience methods that are good to have in scope.

    Definition Classes
    kompics
  • package simulator

    The Kompics Simulator DSL for Scala

    The Kompics Simulator DSL for Scala

    Definition Classes
    sl
    Example:
    1. case object SimpleSimulation {
      
        import Distributions._
        // needed for the distributions, but needs to be initialised after setting the seed
        implicit val random = JSimulationScenario.getRandom();
      
        private def intToAddress(i: Int): Address = {
          try {
            new TAddress(new InetSocketAddress(InetAddress.getByName("192.193.0." + i), 10000));
          } catch {
            case ex: UnknownHostException => throw new RuntimeException(ex);
          }
        }
      
        val startResultSetterOp = Op { (self: Integer) =>
          val selfAddr = intToAddress(self);
          StartNode(selfAddr, Init[ResultSetter](selfAddr))
        };
        val startPongerOp = Op { (self: Integer) =>
          val selfAddr = intToAddress(self)
          StartNode(selfAddr, Init[PongerParent](selfAddr))
        };
        val startPingerOp = Op { (self: Integer, ponger: Integer) =>
          val selfAddr = intToAddress(self);
          val pongerAddr = intToAddress(ponger);
          StartNode(selfAddr, Init[PingerParent](selfAddr, pongerAddr))
        };
      
        val scenario = raise(5, startPongerOp, 1.toN)
          .arrival(constant(1000.millis))
          .andThen(1000.millis)
          .afterTermination(raise(5, startPingerOp, 6.toN, 1.toN).arrival(constant(1000.millis)))
          .inParallel(raise(1, startResultSetterOp, 1.toN).arrival(constant(1000.millis)))
          .andThen(10000.millis)
          .afterTermination(Terminate);
      }
  • object Op

    Operations of various arities, which produce a KompicsEvent

    Operations of various arities, which produce a KompicsEvent

    Arities from zero to five are provided.

    Use these to map parameters to simulator events using the various raise functions.

    Definition Classes
    simulator
    Example:
    1. raise(5,
        Op { (self: Integer, other: Integer) =>
          val selfAddr = lookupAddress(self); /* Get an address instance for the id */
          val otherAddr = lookupAddress(ponger); /* Get an address instance for the id */
          StartNode(selfAddr, Init[NewComponent](selfAddr, otherAddr))
        },
        1.toN, 2.toN)
    See also

    se.sics.kompics.simulator.adaptor.Operation

  • FunctionOperation
  • FunctionOperation1
  • FunctionOperation2
  • FunctionOperation3
  • FunctionOperation4
  • FunctionOperation5
c

se.sics.kompics.sl.simulator.Op

FunctionOperation3

class FunctionOperation3[E <: KompicsEvent, N <: Number, N2 <: Number, N3 <: Number] extends Operation3[E, N, N2, N3]

An operation implementation that uses a Scala function internally

See also

se.sics.kompics.simulator.adaptor.Operation3

Linear Supertypes
Operation3[E, N, N2, N3], Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FunctionOperation3
  2. Operation3
  3. Serializable
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new FunctionOperation3(generator: (N, N2, N3) => E)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from FunctionOperation3[E, N, N2, N3] toany2stringadd[FunctionOperation3[E, N, N2, N3]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (FunctionOperation3[E, N, N2, N3], B)
    Implicit
    This member is added by an implicit conversion from FunctionOperation3[E, N, N2, N3] toArrowAssoc[FunctionOperation3[E, N, N2, N3]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. def ensuring(cond: (FunctionOperation3[E, N, N2, N3]) => Boolean, msg: => Any): FunctionOperation3[E, N, N2, N3]
    Implicit
    This member is added by an implicit conversion from FunctionOperation3[E, N, N2, N3] toEnsuring[FunctionOperation3[E, N, N2, N3]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: (FunctionOperation3[E, N, N2, N3]) => Boolean): FunctionOperation3[E, N, N2, N3]
    Implicit
    This member is added by an implicit conversion from FunctionOperation3[E, N, N2, N3] toEnsuring[FunctionOperation3[E, N, N2, N3]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean, msg: => Any): FunctionOperation3[E, N, N2, N3]
    Implicit
    This member is added by an implicit conversion from FunctionOperation3[E, N, N2, N3] toEnsuring[FunctionOperation3[E, N, N2, N3]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean): FunctionOperation3[E, N, N2, N3]
    Implicit
    This member is added by an implicit conversion from FunctionOperation3[E, N, N2, N3] toEnsuring[FunctionOperation3[E, N, N2, N3]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  14. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from FunctionOperation3[E, N, N2, N3] toStringFormat[FunctionOperation3[E, N, N2, N3]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  15. def generate(n: N, n2: N2, n3: N3): E
    Definition Classes
    FunctionOperation3 → Operation3
  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

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.

  2. def [B](y: B): (FunctionOperation3[E, N, N2, N3], B)
    Implicit
    This member is added by an implicit conversion from FunctionOperation3[E, N, N2, N3] toArrowAssoc[FunctionOperation3[E, N, N2, N3]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from Operation3[E, N, N2, N3]

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromFunctionOperation3[E, N, N2, N3] to any2stringadd[FunctionOperation3[E, N, N2, N3]]

Inherited by implicit conversion StringFormat fromFunctionOperation3[E, N, N2, N3] to StringFormat[FunctionOperation3[E, N, N2, N3]]

Inherited by implicit conversion Ensuring fromFunctionOperation3[E, N, N2, N3] to Ensuring[FunctionOperation3[E, N, N2, N3]]

Inherited by implicit conversion ArrowAssoc fromFunctionOperation3[E, N, N2, N3] to ArrowAssoc[FunctionOperation3[E, N, N2, N3]]

Ungrouped