Object

molecule.channel

Clock

Related Doc: package channel

Permalink

object Clock

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Clock
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def apply(initialDelay: Long, delay: Long, unit: TimeUnit, capacity: Int): IChan[Int]

    Permalink
  5. def apply(initialDelay: Long, delay: Long, unit: TimeUnit): IChan[Int]

    Permalink

    Create a Timer Channel configured to schedule periodic time events that occur first after the given initial delay, and subsequently with the given period; that is executions will commence after initialDelay then initialDelay+period, then initialDelay + 2 * period, and so on.

    Create a Timer Channel configured to schedule periodic time events that occur first after the given initial delay, and subsequently with the given period; that is executions will commence after initialDelay then initialDelay+period, then initialDelay + 2 * period, and so on. The generation of periodic events will only terminate via cancellation. Time events not consumed with the period interval are silently dropped.

    initialDelay

    the time to delay first execution

    unit

    the time unit of the initialDelay and period parameters

    returns

    a Timer counting the number of ticks generated since the channel was created

    Annotations
    @throws( classOf[IllegalArgumentException] )
    Exceptions thrown

    IllegalArgumentException if period less than or equal to zero

    See also

    scheduleAtFixedRate

  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

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

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

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

    Permalink
    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  18. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  19. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. def wrap[A](ichan: IChan[A], initDelay: Long, period: Long, unit: TimeUnit, maxBatchSize: Int = Platform.segmentSizeThreshold, capacity: Int = 10)(implicit arg0: Message[A]): IChan[A]

    Permalink
  23. def wrap[A](ichan: IChan[A], initDelay: Long, period: Long, unit: TimeUnit)(implicit arg0: Message[A]): IChan[A]

    Permalink
  24. def wrap[A](ichan: IChan[A], period: Long, unit: TimeUnit)(implicit arg0: Message[A]): IChan[A]

    Permalink

    Create a periodic channel.

Inherited from AnyRef

Inherited from Any

Ungrouped