abstract class Impl[S <: Sys[S], E[~ <: Sys[~]] <: Elem[~]] extends Modifiable[S, E[S]] with SingleNode[S, Update[S, E[S]]]
- Self Type
- Impl[S, E]
- Alphabetic
- By Inheritance
- Impl
- SingleNode
- Node
- Modifiable
- BiPin
- Obj
- Mutable
- Identifiable
- Elem
- Publisher
- Disposable
- Writable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new Impl()
Type Members
Abstract Value Members
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
add(key: LongObj[S], value: A)(implicit tx: S.Tx): Unit
- Definition Classes
- Impl → Modifiable
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
final
def
at(time: Long)(implicit tx: S.Tx): Option[Entry[S, A]]
Queries the element valid for the given point in time.
Queries the element valid for the given point in time. Unlike,
intersect, if there are multiple elements sharing the same point in time, this returns the most recently added element.We propose that this should be the unambiguous way to evaluate the
BiPinfor a given moment in time.- time
the query time point
- returns
an element for the given time point, if it exists, otherwise
None
-
final
def
attr(implicit tx: S.Tx): AttrMap[S]
- Definition Classes
- Obj
-
final
def
ceil(time: Long)(implicit tx: S.Tx): Option[Entry[S, A]]
Finds the entry at the given time, or the closest entry after the given time.
-
final
def
clear()(implicit tx: S.Tx): Unit
- Definition Classes
- Impl → Modifiable
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- def debugList(implicit tx: S.Tx): List[(Long, A)]
-
final
def
dispose()(implicit tx: S.Tx): Unit
- Definition Classes
- Node → Disposable
-
final
def
disposeData()(implicit tx: S.Tx): Unit
- Attributes
- protected
- Definition Classes
- Impl → Node
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(that: Any): Boolean
- Definition Classes
- Identifiable → AnyRef → Any
-
final
def
eventAfter(time: Long)(implicit tx: S.Tx): Option[Long]
Finds the entry with the smallest time which is greater than the query time.
-
final
def
eventBefore(time: Long)(implicit tx: S.Tx): Option[Long]
Finds the entry with the greatest time which is less than the query time.
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
floor(time: Long)(implicit tx: S.Tx): Option[Entry[S, A]]
Finds the entry at the given time, or the closest entry before the given time.
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- Identifiable → AnyRef → Any
-
final
def
id: S.ID
- Definition Classes
- Node → Identifiable
-
final
def
intersect(time: Long)(implicit tx: S.Tx): Leaf[S, A]
Queries all elements which are found at a given point in time.
Queries all elements which are found at a given point in time. There may be multiple time expressions which are not equal but evaluate to the same moment in time. It is thus possible that for a given point, multiple elements are found.
- time
the query point
- returns
the sequence of elements found along with their time expressions
-
final
def
isEmpty(implicit tx: S.Tx): Boolean
Returns
trueif not a single element is contained in the collection. -
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
newTree()(implicit tx: S.Tx): Tree[S, A]
- Attributes
- protected
-
final
def
nonEmpty(implicit tx: S.Tx): Boolean
Returns
trueif at least one element is contained in the collection. -
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
final
def
readTree(in: DataInput, access: S.Acc)(implicit tx: S.Tx): Tree[S, A]
- Attributes
- protected
-
final
def
remove(key: LongObj[S], value: A)(implicit tx: S.Tx): Boolean
- Definition Classes
- Impl → Modifiable
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- Node → AnyRef → Any
- final def valueAt(time: Long)(implicit tx: S.Tx): Option[A]
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
write(out: DataOutput): Unit
- Definition Classes
- Node → Writable
-
final
def
writeData(out: DataOutput): Unit
- Attributes
- protected
- Definition Classes
- Impl → Node
-
object
changed
extends Changed with Generator[S, Update[S, A]] with Caching
- Definition Classes
- Impl → SingleNode → Publisher