Include the method that made the callback in the key. Change-Id: Ifc7c486ee5c8d57b2516456569bb724cf7dc2b99
13 lines
193 B
PHP
13 lines
193 B
PHP
<?php
|
|
|
|
/**
|
|
* Callback wrapper that has an originating method
|
|
*
|
|
* @since 1.28
|
|
*/
|
|
interface DeferrableCallback {
|
|
/**
|
|
* @return string Originating method name
|
|
*/
|
|
function getOrigin();
|
|
}
|