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);
      }
  • AnyPort
  • ComponentAndPort
  • ComponentDefinition
  • Config
  • Init
  • Kompics
  • NegativePort
  • NegativeWrapper
  • Port
  • PortAndComponent
  • PortAndPort
  • PositivePort
  • PositiveWrapper
  • PrimitiveConverters
  • SConv
  • ScalaComponent
  • ScalaComponentWrapper
  • ScalaPort

trait NegativePort[P <: PortType] extends Negative[P] with AnyPort

Scala trait for a Negative port

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NegativePort
  2. AnyPort
  3. Negative
  4. Port
  5. AnyRef
  6. 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

Abstract Value Members

  1. abstract def ++(components: Component*): Seq[Channel[P]]

    Create a bidirectional channel to each Component in components.

  2. abstract def ++(component: Component): Channel[P]

    Create a bidirectional channel to the component.

  3. abstract def addChannel(arg0: ChannelCore[P], arg1: ChannelSelector[_ <: AnyRef, _ <: AnyRef]): Unit
    Definition Classes
    Port
  4. abstract def addChannel(arg0: ChannelCore[P]): Unit
    Definition Classes
    Port
  5. abstract def doSubscribe(arg0: MatchedHandler[_ <: AnyRef, _ <: AnyRef, _ <: AnyRef]): Unit
    Definition Classes
    Port
  6. abstract def doSubscribe[E <: kompics.KompicsEvent](arg0: kompics.Handler[E]): Unit
    Definition Classes
    Port
  7. abstract def doTrigger(arg0: kompics.KompicsEvent, arg1: Int, arg2: ComponentCore): Unit
    Definition Classes
    Port
  8. abstract def doTrigger(arg0: kompics.KompicsEvent, arg1: Int, arg2: ChannelCore[_ <: AnyRef]): Unit
    Definition Classes
    Port
  9. abstract def dualPositive: PositivePort[P]

    Get the positive pair/dual.

  10. abstract def enqueue(arg0: kompics.KompicsEvent): Unit
    Definition Classes
    Port
  11. abstract def getOwner(): ComponentCore
    Definition Classes
    Port
  12. abstract def getPair(): PortCore[P]
    Definition Classes
    Port
  13. abstract def getPortType(): P
    Definition Classes
    Port
  14. abstract def removeChannel(arg0: ChannelCore[P]): Unit
    Definition Classes
    Port
  15. abstract def setPair(arg0: PortCore[P]): Unit
    Definition Classes
    Port
  16. abstract def uponEvent(handler: Handler): Handler

    Subscribe an event handler

    Subscribe an event handler

    handler

    the handler to be subscribed

    returns

    the subscribed event handler

    Definition Classes
    AnyPort
    Example:
    1. val handler = myPort uponEvent {
        case AnEvent(field) => println(field)
      };

Concrete 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 NegativePort[P] toany2stringadd[NegativePort[P]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (NegativePort[P], B)
    Implicit
    This member is added by an implicit conversion from NegativePort[P] toArrowAssoc[NegativePort[P]] 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: (NegativePort[P]) => Boolean, msg: => Any): NegativePort[P]
    Implicit
    This member is added by an implicit conversion from NegativePort[P] toEnsuring[NegativePort[P]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: (NegativePort[P]) => Boolean): NegativePort[P]
    Implicit
    This member is added by an implicit conversion from NegativePort[P] toEnsuring[NegativePort[P]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean, msg: => Any): NegativePort[P]
    Implicit
    This member is added by an implicit conversion from NegativePort[P] toEnsuring[NegativePort[P]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean): NegativePort[P]
    Implicit
    This member is added by an implicit conversion from NegativePort[P] toEnsuring[NegativePort[P]] 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 NegativePort[P] toStringFormat[NegativePort[P]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  22. def toString(): String
    Definition Classes
    AnyRef → Any
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  25. 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): (NegativePort[P], B)
    Implicit
    This member is added by an implicit conversion from NegativePort[P] toArrowAssoc[NegativePort[P]] 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 AnyPort

Inherited from Negative[P]

Inherited from kompics.Port[P]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromNegativePort[P] to any2stringadd[NegativePort[P]]

Inherited by implicit conversion StringFormat fromNegativePort[P] to StringFormat[NegativePort[P]]

Inherited by implicit conversion Ensuring fromNegativePort[P] to Ensuring[NegativePort[P]]

Inherited by implicit conversion ArrowAssoc fromNegativePort[P] to ArrowAssoc[NegativePort[P]]

Ungrouped