streams/Zotlabs/Zot6/IHandler.php
2021-12-03 10:02:31 +11:00

17 lines
271 B
PHP

<?php
namespace Zotlabs\Zot6;
interface IHandler
{
public function Notify($data, $hub);
public function Rekey($sender, $data, $hub);
public function Refresh($sender, $recipients, $hub, $force);
public function Purge($sender, $recipients, $hub);
}