Event.Store.Entry

trait Entry extends Able.Doc with Able.Void

Entry is the link in the linked list of all entries.

Source
Entry.scala
trait Able.Void
trait Able.Doc
trait Able.Tag
class java.lang.Object
trait scala.Matchable
class Any

Def

def `type`: Any

Type

Type

Scope the entry belongs to.

Entries are accessed by type, and entries with different types never mix

Source
Entry.scala
def cancel: Boolean

Removal

Removal

Running cancel, will remove the entry from the stored list and it will be no longer available

If entry is already cancelled, nothing happens.

Source
Entry.scala
def doc: Doc

Doc

Doc

Returns Doc object, loaded with property names and values describing this instance

Inherited from
Doc
Source
Doc.scala
def isCancelled: Boolean

Cancelled check

Cancelled check

Returns true is the entry is already cancelled.

Source
Entry.scala
def isVoid: Boolean

Is void check

Is void check

Returns true if this instance is void, false othervise

Inherited from
Void
Source
Void.scala
def tag: String

Make String

Make String

tag returns this instance String representation, which should be used insted of toString

Inherited from
Doc
Source
Doc.scala
def value: Any

Value

Value

Value is entry's pay load. It can be anything.

Source
Entry.scala