MultiMountPoint

com.thoughtworks.binding.Binding$.MultiMountPoint
abstract class MultiMountPoint[-Element](upstream: BindingSeq[Element])

A mechanism that mounts the result of a data binding expression of a sequence into DOM or other system.

Attributes

Source
Binding.scala
Graph
Supertypes
trait Binding[Unit]
trait Watchable[Unit]
class Object
trait Matchable
class Any

Members list

Value members

Inherited methods

override protected def addChangedListener(listener: ChangedListener[Unit]): Unit

Attributes

Definition Classes
MountPoint -> Binding
Inherited from:
MountPoint (hidden)
Source
Binding.scala
final def flatMap[B](f: Unit => Binding[B]): Binding[B]

Attributes

Inherited from:
Binding
Source
Binding.scala
final def map[B](f: Unit => B): Binding[B]

Attributes

Inherited from:
Binding
Source
Binding.scala
protected def mount(): Unit

Attributes

Inherited from:
MultiMountPoint (hidden)
Source
Binding.scala
override protected def removeChangedListener(listener: ChangedListener[Unit]): Unit

Attributes

Definition Classes
MountPoint -> Binding
Inherited from:
MountPoint (hidden)
Source
Binding.scala
protected def set(children: Iterable[Element]): Unit

Attributes

Inherited from:
MultiMountPoint (hidden)
Source
Binding.scala
protected def splice(from: Int, that: Iterable[Element], replaced: Int): Unit

Attributes

Inherited from:
MultiMountPoint (hidden)
Source
Binding.scala
protected def unmount(): Unit

Attributes

Inherited from:
MultiMountPoint (hidden)
Source
Binding.scala
final def unwatch(): Unit

Disable automatic recalculation.

Disable automatic recalculation.

Attributes

Note

This method is recursive, which means that the dependencies of this Binding will be unwatched as well.

Inherited from:
Binding
Source
Binding.scala
override protected def value: Unit

Returns the current value of this Binding

Returns the current value of this Binding

Attributes

Note

This method must not be invoked inside a @dom method body or a Binding { ... } block..

Definition Classes
MountPoint -> Binding
Inherited from:
MountPoint (hidden)
Source
Binding.scala
final def watch(): Unit

Enable automatic recalculation.

Enable automatic recalculation.

You may invoke this method more than once. Then, when you want to disable automatic recalculation, you must invoke unwatch same times as the number of calls to this method.

Attributes

Note

This method is recursive, which means that the dependencies of this Binding will be watched as well.

Inherited from:
Binding
Source
Binding.scala