streams/Zotlabs/Zot6/IHandler.php

17 lines
216 B
PHP
Raw Normal View History

2018-04-23 01:51:46 +00:00
<?php
namespace Zotlabs\Zot6;
interface IHandler {
2018-06-26 03:55:53 +00:00
function Notify($data,$hub);
2018-04-23 01:51:46 +00:00
2018-06-26 03:55:53 +00:00
function Rekey($sender,$data,$hub);
2018-04-23 01:51:46 +00:00
2018-06-26 03:55:53 +00:00
function Refresh($sender,$recipients,$hub);
2018-04-23 01:51:46 +00:00
2018-06-26 03:55:53 +00:00
function Purge($sender,$recipients,$hub);
2018-04-23 01:51:46 +00:00
}