* @author Icinga Development Team */ // {{{ICINGA_LICENSE_HEADER}}} namespace Icinga\Protocol\Statusdat; interface IReader { /** * @return mixed */ public function getState(); /** * @return mixed */ public function getObjects(); /** * @param $type * @param $name * @return mixed */ public function getObjectByName($type, $name); }