streams/Zotlabs/Zot6/IHandler.php

16 lines
269 B
PHP
Raw Normal View History

2018-04-23 01:51:46 +00:00
<?php
namespace Zotlabs\Zot6;
2021-12-02 23:02:31 +00:00
interface IHandler
{
2018-04-23 01:51:46 +00:00
2021-12-02 23:02:31 +00:00
public function Notify($data, $hub);
2018-04-23 01:51:46 +00:00
2021-12-02 23:02:31 +00:00
public function Rekey($sender, $data, $hub);
2018-04-23 01:51:46 +00:00
2021-12-02 23:02:31 +00:00
public function Refresh($sender, $recipients, $hub, $force);
2018-04-23 01:51:46 +00:00
2021-12-02 23:02:31 +00:00
public function Purge($sender, $recipients, $hub);
2018-04-23 01:51:46 +00:00
}