Folder

trait Folder[T <: Txn[T]] extends FolderLike[T, Folder[T]]
Companion
object
trait FolderLike[T, Folder[T]]
trait Container[T, Folder[T]]
trait AuralObj[T]
trait ObjViewBase[T, Unit]
trait AuralViewBase[T, Unit]
trait ViewBase[T]
trait Disposable[T]
trait Observable[T, State]
class Object
trait Matchable
class Any

Type members

Inherited types

type Repr <: Obj[T]
Inherited from
ObjViewBase

Value members

Inherited methods

def contents: Observable[T, Update[T, Folder[T]]]

Monitors the active views, i.e. views which are intersecting with the current transport position.

Monitors the active views, i.e. views which are intersecting with the current transport position.

Inherited from
Container
def dispose()(implicit tx: T): Unit
Inherited from
Disposable
def folder(implicit tx: T): Folder[T]
Inherited from
FolderLike
def getView(obj: Obj[T])(implicit tx: T): Option[AuralObj[T]]
Inherited from
FolderLike
def getViewById(id: Ident[T])(implicit tx: T): Option[AuralObj[T]]
Inherited from
Container
def obj(implicit tx: T): Repr
Inherited from
AuralViewBase
def play()(implicit tx: T): Unit
Inherited from
AuralObj
def prepare(timeRef: Option)(implicit tx: T): Unit

Prepares the view to be able to run.

Prepares the view to be able to run.

Value Params
timeRef

an optional context of temporal position

Inherited from
AuralViewBase
def react(fun: T => State => Unit)(implicit tx: T): Disposable[T]

Registers a live observer with this observable. The method is called with the observing function which receives the observable's update message of type A, and the method generates an opaque Disposable instance, which may be used to remove the observer eventually (through the dispose method).

Registers a live observer with this observable. The method is called with the observing function which receives the observable's update message of type A, and the method generates an opaque Disposable instance, which may be used to remove the observer eventually (through the dispose method).

Inherited from
Observable
final
def reactNow(fun: T => State => Unit)(implicit tx: T): Disposable[T]

Like react, but also invokes the function with the current state immediately.

Like react, but also invokes the function with the current state immediately.

Inherited from
ViewBase
def run(timeRef: Option, target: Unit)(implicit tx: T): Unit

Runs the view, whatever that means for the particular object. If the object is not prepared and needs preparing, the view will take care of running the prepare step (without mapping any attr map).

Runs the view, whatever that means for the particular object. If the object is not prepared and needs preparing, the view will take care of running the prepare step (without mapping any attr map).

Inherited from
AuralViewBase
def state(implicit tx: T): State
Inherited from
ViewBase
def stop()(implicit tx: T): Unit
Inherited from
ViewBase
def tpe: Type
Inherited from
ObjViewBase
def views(implicit tx: T): Set[AuralObj[T]]

Returns the set of active views, i.e. views which are intersecting with the current transport position.

Returns the set of active views, i.e. views which are intersecting with the current transport position.

Inherited from
Container