TimeDataCollector
class TimeDataCollector extends DataCollector implements LateDataCollectorInterface
TimeDataCollector.
Methods
serialize() | from DataCollector | |
unserialize($data) | from DataCollector | |
__construct(KernelInterface $kernel = null, Stopwatch $stopwatch = null) | ||
collect(Request $request, Response $response, Exception $exception = null) Collects data for the given Request and Response. | ||
reset() Resets this data collector to its initial state. | ||
lateCollect() Collects data as late as possible. | ||
setEvents(array $events) Sets the request events. | ||
array | getEvents() Gets the request events. | |
float | getDuration() Gets the request elapsed time. | |
float | getInitTime() Gets the initialization time. | |
int | getStartTime() Gets the request time. | |
string | getName() Returns the name of the collector. |
Details
serialize()
unserialize($data)
Parameters
$data |
__construct(KernelInterface $kernel = null, Stopwatch $stopwatch = null)
Parameters
KernelInterface | $kernel | |
Stopwatch | $stopwatch |
collect(Request $request, Response $response, Exception $exception = null)
Collects data for the given Request and Response.
Parameters
Request | $request | A Request instance |
Response | $response | A Response instance |
Exception | $exception | An Exception instance |
reset()
Resets this data collector to its initial state.
lateCollect()
Collects data as late as possible.
setEvents(array $events)
Sets the request events.
Parameters
array | $events | The request events |
array getEvents()
Gets the request events.
Return Value
array | The request events |
float getDuration()
Gets the request elapsed time.
Return Value
float | The elapsed time |
float getInitTime()
Gets the initialization time.
This is the time spent until the beginning of the request handling.
Return Value
float | The elapsed time |
int getStartTime()
Gets the request time.
Return Value
int | The time |
string getName()
Returns the name of the collector.
Return Value
string | The collector name |
© 2004–2017 Fabien Potencier
Licensed under the MIT License.
http://api.symfony.com/4.0/Symfony/Component/HttpKernel/DataCollector/TimeDataCollector.html