Ident

trait Ident[T <: Txn[T]] extends Ident[T]
trait Ident[T]
trait Writable
trait Disposable[T]
class Object
trait Matchable
class Any

Value members

Abstract methods

def base: Int
def path: Access[T]

Inherited methods

def !(tx: T): Id

Ensures that the identifier is actually valid in the current transaction.

Ensures that the identifier is actually valid in the current transaction.

Inherited from
Ident
def dispose(tx: T): Unit
Inherited from
Disposable
def newBooleanVar(init: Boolean)(tx: T): Var[T, Boolean]
Inherited from
Ident
def newIntVar(init: Int)(tx: T): Var[T, Int]
Inherited from
Ident
def newLongVar(init: Long)(tx: T): Var[T, Long]
Inherited from
Ident
def newVar[A](init: A)(tx: T, format: TFormat[T, A]): Var[T, A]
Inherited from
Ident
def readBooleanVar(in: DataInput): Var[T, Boolean]
Inherited from
Ident
def readIntVar(in: DataInput): Var[T, Int]
Inherited from
Ident
def readLongVar(in: DataInput): Var[T, Long]
Inherited from
Ident
def readVar[A](in: DataInput)(format: TFormat[T, A]): Var[T, A]
Inherited from
Ident
def write(out: DataOutput): Unit
Inherited from
Writable