de.sciss.synth.proc.Transport

Offline

trait Offline[S <: Sys[S], Elem, U] extends Transport[S, Elem, U]

A transport sub-type which does not automatically advance in accordance to a real-time clock, but awaits manually stepping through. This can be used for offline-bouncing, debugging or unit testing purposes.

Linear Supertypes
Transport[S, Elem, U], Observable[S.Tx, Update[S, Elem, U]], Disposable[S.Tx], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Offline
  2. Transport
  3. Observable
  4. Disposable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def cursor: Cursor[S]

    Definition Classes
    Transport
  2. abstract def dispose()(implicit tx: S.Tx): Unit

    Definition Classes
    Disposable
  3. abstract def elapse(seconds: Double)(implicit tx: S.Tx): Unit

    Advances the offline logical clock by a given amount of seconds.

    Advances the offline logical clock by a given amount of seconds. This is important if the objects of the group being transported change, as their change will be associated with the offline logical clock. For a bouncing operation, this method should not be used.

  4. abstract def isPlaying(implicit tx: S.Tx): Boolean

    Definition Classes
    Transport
  5. abstract def iterator(implicit tx: S.Tx): Iterator[S.Tx, (SpanLike, TimedElem[S, Elem])]

     Iterator over all processes which intersect with the current time.

     Iterator over all processes which intersect with the current time.

    Definition Classes
    Transport
  6. abstract def play()(implicit tx: S.Tx): Unit

    Definition Classes
    Transport
  7. abstract def position(implicit tx: S.Tx): Long

    Last frame position at which the transport stopped to evaluate an event.

  8. abstract def react(fun: (S.Tx) ⇒ (Update[S, Elem, U]) ⇒ Unit)(implicit tx: S.Tx): Disposable[S.Tx]

    Definition Classes
    Observable
  9. abstract def sampleRate: Double

    Definition Classes
    Transport
  10. abstract def seek(time: Long)(implicit tx: S.Tx): Unit

    Definition Classes
    Transport
  11. abstract def step()(implicit tx: S.Tx): Unit

    Advances the transport to the next position (if there is any)

  12. abstract def stepTarget(implicit tx: S.Tx): Option[Long]

    Queries the logical time target of the next step.

    Queries the logical time target of the next step.

    returns

    the logical time in sample frames at which the next event occurs, or None if there are no further events. If the offline logical clock has never been elapsed (by calling elapse), its base is zero, and therefore the number of frames returned by this method are the number of frames from the beginning of the timeline.

  13. abstract def stop()(implicit tx: S.Tx): Unit

    Definition Classes
    Transport
  14. abstract def time(implicit tx: S.Tx): Long

    Definition Classes
    Transport

Concrete Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

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

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

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

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

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

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

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

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

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

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

    Definition Classes
    AnyRef
  18. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Transport[S, Elem, U]

Inherited from Observable[S.Tx, Update[S, Elem, U]]

Inherited from Disposable[S.Tx]

Inherited from AnyRef

Inherited from Any

Ungrouped