Skip to main content

Interface: SessionEvent

Base interface for all Session events.

Extends

Extended by

Properties

handled?

optional handled: boolean

Has the event been taken care of by the listener and not be dispatched to other targets?

Inherited from

M2Event.handled

Source

core/dist/index.d.ts:2309


iso8601Timestamp

iso8601Timestamp: string

Timestamp of th event, from new Date().toISOString()

Inherited from

M2Event.iso8601Timestamp

Source

core/dist/index.d.ts:2313


sequence?

optional sequence: number

Sequence number of event.

Remarks

Sequence number is guaranteed to reflect order of events, but not necessarily contiguous, e.g., could be 1, 2, 5, 10, 11, 24.

Inherited from

M2Event.sequence

Source

core/dist/index.d.ts:2318


target

target: Session

Overrides

M2Event.target

Source

session/src/SessionEvent.ts:6


timestamp

timestamp: number

Timestamp of the event, from performance.now()

Inherited from

M2Event.timestamp

Source

core/dist/index.d.ts:2311


type

type: string

Type of event.

Inherited from

M2Event.type

Source

core/dist/index.d.ts:2305