. * */ namespace OCP\Activity; interface IManager { function publishActivity($app, $subject, $message, $file, $link); /** * In order to improve lazy loading a closure can be registered which will be called in case * activity consumers are actually requested * * $callable has to return an instance of OCA\Activity\IConsumer * * @param string $key * @param \Closure $callable */ function registerConsumer(\Closure $callable); }