streams/Zotlabs/Zot6/IHandler.php
2021-12-03 14:01:39 +11:00

15 lines
269 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);
}