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
c

se.sics.kompics.sl

NegativeWrapper

class NegativeWrapper[P <: PortType] extends NegativePort[P]

A wrapper for java ports to implement NegativePort

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NegativeWrapper
  2. NegativePort
  3. AnyPort
  4. Negative
  5. Port
  6. AnyRef
  7. 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 NegativeWrapper(original: PortCore[P])

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 NegativeWrapper[P] toany2stringadd[NegativeWrapper[P]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ++(components: Component*): Seq[Channel[P]]

    Create a bidirectional channel to each Component in components.

    Create a bidirectional channel to each Component in components.

    Definition Classes
    NegativeWrapperNegativePort
  5. def ++(component: Component): Channel[P]

    Create a bidirectional channel to the component.

    Create a bidirectional channel to the component.

    Definition Classes
    NegativeWrapperNegativePort
  6. def ->[B](y: B): (NegativeWrapper[P], B)
    Implicit
    This member is added by an implicit conversion from NegativeWrapper[P] toArrowAssoc[NegativeWrapper[P]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  7. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def addChannel(channel: ChannelCore[P], selector: ChannelSelector[_, _]): Unit
    Definition Classes
    NegativeWrapper → Port
  9. def addChannel(channel: ChannelCore[P]): Unit
    Definition Classes
    NegativeWrapper → Port
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  12. def doSubscribe(handler: MatchedHandler[_, _, _]): Unit
    Definition Classes
    NegativeWrapper → Port
  13. def doSubscribe[E <: KompicsEvent](handler: kompics.Handler[E]): Unit
    Definition Classes
    NegativeWrapper → Port
  14. def doTrigger(event: KompicsEvent, wid: Int, component: ComponentCore): Unit
    Definition Classes
    NegativeWrapper → Port
  15. def doTrigger(event: KompicsEvent, wid: Int, channel: ChannelCore[_]): Unit
    Definition Classes
    NegativeWrapper → Port
  16. def dualPositive: PositivePort[P]

    Get the positive pair/dual.

    Get the positive pair/dual.

    Definition Classes
    NegativeWrapperNegativePort
  17. def enqueue(event: KompicsEvent): Unit
    Definition Classes
    NegativeWrapper → Port
  18. def ensuring(cond: (NegativeWrapper[P]) => Boolean, msg: => Any): NegativeWrapper[P]
    Implicit
    This member is added by an implicit conversion from NegativeWrapper[P] toEnsuring[NegativeWrapper[P]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. def ensuring(cond: (NegativeWrapper[P]) => Boolean): NegativeWrapper[P]
    Implicit
    This member is added by an implicit conversion from NegativeWrapper[P] toEnsuring[NegativeWrapper[P]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. def ensuring(cond: Boolean, msg: => Any): NegativeWrapper[P]
    Implicit
    This member is added by an implicit conversion from NegativeWrapper[P] toEnsuring[NegativeWrapper[P]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  21. def ensuring(cond: Boolean): NegativeWrapper[P]
    Implicit
    This member is added by an implicit conversion from NegativeWrapper[P] toEnsuring[NegativeWrapper[P]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  22. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  24. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from NegativeWrapper[P] toStringFormat[NegativeWrapper[P]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  25. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. def getOwner(): ComponentCore
    Definition Classes
    NegativeWrapper → Port
  27. def getPair(): PortCore[P]
    Definition Classes
    NegativeWrapper → Port
  28. def getPortType(): P
    Definition Classes
    NegativeWrapper → Port
  29. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  30. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  31. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  32. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  33. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  34. def removeChannel(channel: ChannelCore[P]): Unit
    Definition Classes
    NegativeWrapper → Port
  35. def setPair(port: PortCore[P]): Unit
    Definition Classes
    NegativeWrapper → Port
  36. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  37. def toString(): String
    Definition Classes
    AnyRef → Any
  38. 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
    NegativeWrapperAnyPort
    Example:
    1. val handler = myPort uponEvent {
        case AnEvent(field) => println(field)
      };
  39. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  40. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  41. 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): (NegativeWrapper[P], B)
    Implicit
    This member is added by an implicit conversion from NegativeWrapper[P] toArrowAssoc[NegativeWrapper[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 NegativePort[P]

Inherited from AnyPort

Inherited from Negative[P]

Inherited from kompics.Port[P]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromNegativeWrapper[P] to any2stringadd[NegativeWrapper[P]]

Inherited by implicit conversion StringFormat fromNegativeWrapper[P] to StringFormat[NegativeWrapper[P]]

Inherited by implicit conversion Ensuring fromNegativeWrapper[P] to Ensuring[NegativeWrapper[P]]

Inherited by implicit conversion ArrowAssoc fromNegativeWrapper[P] to ArrowAssoc[NegativeWrapper[P]]

Ungrouped