mediatekformation

ConnectionEventArgs extends EventArgs
in package

Event Arguments used when a Driver connection is established inside Doctrine\DBAL\Connection.

Table of Contents

$_emptyEventArgsInstance  : EventArgs
Single instance of EventArgs.
$connection  : Connection
__construct()  : mixed
getConnection()  : Connection
getEmptyInstance()  : EventArgs
Gets the single, empty and immutable EventArgs instance.

Properties

$_emptyEventArgsInstance

Single instance of EventArgs.

private static EventArgs $_emptyEventArgsInstance

Methods

__construct()

public __construct(Connection $connection) : mixed
Parameters
$connection : Connection
Return values
mixed

getEmptyInstance()

Gets the single, empty and immutable EventArgs instance.

public static getEmptyInstance() : EventArgs

This instance will be used when events are dispatched without any parameter, like this: EventManager::dispatchEvent('eventname');

The benefit from this is that only one empty instance is instantiated and shared (otherwise there would be instances for every dispatched in the abovementioned form).

Tags
link
https://msdn.microsoft.com/en-us/library/system.eventargs.aspx
see
EventManager::dispatchEvent
Return values
EventArgs

Search results