org.powerapi.core

ClockChannel

object ClockChannel extends Channel

Clock channel and messages.

Linear Supertypes
Channel, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ClockChannel
  2. Channel
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. trait ClockMessage extends Message

  2. case class ClockStart(topic: String, frequency: FiniteDuration) extends ClockMessage with Product with Serializable

    ClockStart is represented as a dedicated type of message.

  3. case class ClockStop(topic: String, frequency: FiniteDuration) extends ClockMessage with Product with Serializable

    ClockStop is represented as a dedicated type of message.

  4. case class ClockStopAll(topic: String) extends ClockMessage with Product with Serializable

    ClockStopAll is represented as a dedicated type of message.

  5. case class ClockTick(topic: String, frequency: FiniteDuration, timestamp: Long = System.currentTimeMillis) extends ClockMessage with Product with Serializable

    ClockTick is represented as a dedicated type of message.

  6. type M = ClockMessage

    Definition Classes
    ClockChannelChannel

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[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. def formatClockChildName(frequency: FiniteDuration): String

    Use to format the ClockChild name.

  10. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  11. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. final def notify(): Unit

    Definition Classes
    AnyRef
  15. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  16. def publish(message: M)(bus: EventBus): Unit

    Attributes
    protected
    Definition Classes
    Channel
  17. def publishClockTick(frequency: FiniteDuration): (MessageBus) ⇒ Unit

    Internal methods used by the ClockChild actors for interacting with the bus.

  18. def startClock(frequency: FiniteDuration): (MessageBus) ⇒ Unit

  19. def stopAllClock: (MessageBus) ⇒ Unit

  20. def stopClock(frequency: FiniteDuration): (MessageBus) ⇒ Unit

  21. def subscribe(topic: String)(bus: EventBus)(subscriber: ActorRef): Unit

    Attributes
    protected
    Definition Classes
    Channel
  22. def subscribeClockChannel: (MessageBus) ⇒ (ActorRef) ⇒ Unit

    Internal methods used by the Clocks actor for interacting with the bus.

  23. def subscribeClockTick(frequency: FiniteDuration): (MessageBus) ⇒ (ActorRef) ⇒ Unit

    External methods used by the Monitor actors to subscribe/unsubscribe, start/stop a clock which runs at a frequency.

  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  25. def toString(): String

    Definition Classes
    AnyRef → Any
  26. def unsubscribe(topic: String)(bus: EventBus)(subscriber: ActorRef): Unit

    Attributes
    protected
    Definition Classes
    Channel
  27. def unsubscribeClockTick(frequency: FiniteDuration): (MessageBus) ⇒ (ActorRef) ⇒ Unit

  28. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Channel

Inherited from AnyRef

Inherited from Any

Ungrouped