wiki.techinc.nl/includes/deferred/DeferrableCallback.php
Aaron Schulz 16ad2a779e Make statsd counts for MWCallableUpdate actually useful
Include the method that made the callback in the key.

Change-Id: Ifc7c486ee5c8d57b2516456569bb724cf7dc2b99
2016-07-21 23:52:09 -07:00

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();
}