consumers as $consumer) { $c = $consumer(); if ($c instanceof IConsumer) { try { $c->receive( $app, $subject, $subjectParams, $message, $messageParams, $file, $link, $affectedUser, $type, $priority); } catch (\Exception $ex) { // TODO: log the excepetion } } } } /** * 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 \Closure $callable */ function registerConsumer(\Closure $callable) { array_push($this->consumers, $callable); } }