mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-19 04:19:28 +01:00
37 lines
860 B
PHP
37 lines
860 B
PHP
<?php
|
|
/**
|
|
* EGroupware API: push JSON commands to client
|
|
*
|
|
* @link http://www.egroupware.org
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @package api
|
|
* @subpackage json
|
|
* @author Ralf Becker <rb@stylite.de>
|
|
* @version $Id$
|
|
*/
|
|
|
|
namespace EGroupware\Api\Json;
|
|
|
|
/**
|
|
* Interface for push backends
|
|
*/
|
|
interface PushBackend
|
|
{
|
|
/**
|
|
* Adds any type of data to the message
|
|
*
|
|
* @param ?int|int[] $account_id account_id(s) to push message too, null: session, 0: whole instance
|
|
* @param string $key
|
|
* @param mixed $data
|
|
* @throws Exception\NotOnline if $account_id is not online
|
|
*/
|
|
public function addGeneric($account_id, $key, $data);
|
|
|
|
/**
|
|
* Get users online / connected to push-server
|
|
*
|
|
* @return array of integer account_id currently available for push
|
|
*/
|
|
public function online();
|
|
}
|