* @version $Id$ */ namespace EGroupware\Api\Json; /** * Interface for push backends */ interface PushBackend { /** * Adds any type of data to the message * * @param int $account_id account_id to push message too * @param string $key * @param mixed $data * @throws Exception\NotOnline if $account_id is not online */ public function addGeneric($account_id, $key, $data); }