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);
      }
  • ChangeNetwork
  • Distributions
  • IntDistributions
  • KillNode
  • Op
  • Setup
  • SimulationResult
  • StartNode
  • StochasticProcess
  • StochasticProcessBuilder
  • StochasticProcessChain
  • Terminate
c

se.sics.kompics.sl.simulator

StochasticProcessBuilder

class StochasticProcessBuilder extends AnyRef

A builder class for StochasticProcess instances

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StochasticProcessBuilder
  2. AnyRef
  3. 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 StochasticProcessBuilder()

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 StochasticProcessBuilder toany2stringadd[StochasticProcessBuilder] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (StochasticProcessBuilder, B)
    Implicit
    This member is added by an implicit conversion from StochasticProcessBuilder toArrowAssoc[StochasticProcessBuilder] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def and[E <: kompics.KompicsEvent, N <: Number, N2 <: Number, N3 <: Number, N4 <: Number, N5 <: Number](count: Int, op: Operation5[E, N, N2, N3, N4, N5], d: Distribution[N], d2: Distribution[N2], d3: Distribution[N3], d4: Distribution[N4], d5: Distribution[N5]): StochasticProcessBuilder

    Append an operation to the process

    Append an operation to the process

    E

    the event type produced by the operation

    N

    the type of the first argument of the operation

    N2

    the type of the second argument of the operation

    N3

    the type of the third argument of the operation

    N4

    the type of the fourth argument of the operation

    N5

    the type of the fifth argument of the operation

    count

    the number time the operation should occur

    op

    the operation to append

    d

    the distribution of the first argument of the operation

    d2

    the distribution of the second argument of the operation

    d3

    the distribution of the third argument of the operation

    d4

    the distribution of the fourth argument of the operation

    d5

    the distribution of the fifths argument of the operation

    returns

    this instance

  7. def and[E <: kompics.KompicsEvent, N <: Number, N2 <: Number, N3 <: Number, N4 <: Number](count: Int, op: Operation4[E, N, N2, N3, N4], d: Distribution[N], d2: Distribution[N2], d3: Distribution[N3], d4: Distribution[N4]): StochasticProcessBuilder

    Append an operation to the process

    Append an operation to the process

    E

    the event type produced by the operation

    N

    the type of the first argument of the operation

    N2

    the type of the second argument of the operation

    N3

    the type of the third argument of the operation

    N4

    the type of the fourth argument of the operation

    count

    the number time the operation should occur

    op

    the operation to append

    d

    the distribution of the first argument of the operation

    d2

    the distribution of the second argument of the operation

    d3

    the distribution of the third argument of the operation

    d4

    the distribution of the fourth argument of the operation

    returns

    this instance

  8. def and[E <: kompics.KompicsEvent, N <: Number, N2 <: Number, N3 <: Number](count: Int, op: Operation3[E, N, N2, N3], d: Distribution[N], d2: Distribution[N2], d3: Distribution[N3]): StochasticProcessBuilder

    Append an operation to the process

    Append an operation to the process

    E

    the event type produced by the operation

    N

    the type of the first argument of the operation

    N2

    the type of the second argument of the operation

    N3

    the type of the third argument of the operation

    count

    the number time the operation should occur

    op

    the operation to append

    d

    the distribution of the first argument of the operation

    d2

    the distribution of the second argument of the operation

    d3

    the distribution of the third argument of the operation

    returns

    this instance

  9. def and[E <: kompics.KompicsEvent, N <: Number, N2 <: Number](count: Int, op: Operation2[E, N, N2], d: Distribution[N], d2: Distribution[N2]): StochasticProcessBuilder

    Append an operation to the process

    Append an operation to the process

    E

    the event type produced by the operation

    N

    the type of the first argument of the operation

    N2

    the type of the second argument of the operation

    count

    the number time the operation should occur

    op

    the operation to append

    d

    the distribution of the first argument of the operation

    d2

    the distribution of the second argument of the operation

    returns

    this instance

  10. def and[E <: kompics.KompicsEvent, N <: Number](count: Int, op: Operation1[E, N], d: Distribution[N]): StochasticProcessBuilder

    Append an operation to the process

    Append an operation to the process

    E

    the event type produced by the operation

    N

    the type of the first argument of the operation

    count

    the number time the operation should occur

    op

    the operation to append

    d

    the distribution of the first argument of the operation

    returns

    this instance

  11. def and[E <: kompics.KompicsEvent](count: Int, op: Operation[E]): StochasticProcessBuilder

    Append an operation to the process

    Append an operation to the process

    E

    the event type produced by the operation

    count

    the number time the operation should occur

    op

    the operation to append

    returns

    this instance

  12. def arrival(interarrivalTime: Distribution[Long]): StochasticProcess

    Complete the stochastic process by giving it an event interarrival time

    Complete the stochastic process by giving it an event interarrival time

    interarrivalTime

    the distribution of time between events

    returns

    the final stochastic process

  13. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  14. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  15. def ensuring(cond: (StochasticProcessBuilder) => Boolean, msg: => Any): StochasticProcessBuilder
    Implicit
    This member is added by an implicit conversion from StochasticProcessBuilder toEnsuring[StochasticProcessBuilder] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: (StochasticProcessBuilder) => Boolean): StochasticProcessBuilder
    Implicit
    This member is added by an implicit conversion from StochasticProcessBuilder toEnsuring[StochasticProcessBuilder] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean, msg: => Any): StochasticProcessBuilder
    Implicit
    This member is added by an implicit conversion from StochasticProcessBuilder toEnsuring[StochasticProcessBuilder] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: Boolean): StochasticProcessBuilder
    Implicit
    This member is added by an implicit conversion from StochasticProcessBuilder toEnsuring[StochasticProcessBuilder] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  21. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from StochasticProcessBuilder toStringFormat[StochasticProcessBuilder] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  22. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  24. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  25. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  28. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  29. def toString(): String
    Definition Classes
    AnyRef → Any
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  32. 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): (StochasticProcessBuilder, B)
    Implicit
    This member is added by an implicit conversion from StochasticProcessBuilder toArrowAssoc[StochasticProcessBuilder] 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 AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromStochasticProcessBuilder to any2stringadd[StochasticProcessBuilder]

Inherited by implicit conversion StringFormat fromStochasticProcessBuilder to StringFormat[StochasticProcessBuilder]

Inherited by implicit conversion Ensuring fromStochasticProcessBuilder to Ensuring[StochasticProcessBuilder]

Inherited by implicit conversion ArrowAssoc fromStochasticProcessBuilder to ArrowAssoc[StochasticProcessBuilder]

Ungrouped