class StopwatchPeriod

Represents an Period for an Event.

Methods

__construct(int $start, int $end)

Constructor.

int
getStartTime()

Gets the relative time of the start of the period.

int
getEndTime()

Gets the relative time of the end of the period.

int
getDuration()

Gets the time spent in this period.

int
getMemory()

Gets the memory usage.

Details

at line line 31
__construct(int $start, int $end)

Constructor.

Parameters

int $start The relative time of the start of the period (in milliseconds)
int $end The relative time of the end of the period (in milliseconds)

at line line 43
int getStartTime()

Gets the relative time of the start of the period.

Return Value

int The time (in milliseconds)

at line line 53
int getEndTime()

Gets the relative time of the end of the period.

Return Value

int The time (in milliseconds)

at line line 63
int getDuration()

Gets the time spent in this period.

Return Value

int The period duration (in milliseconds)

at line line 73
int getMemory()

Gets the memory usage.

Return Value

int The memory usage (in bytes)