streams/Zotlabs/Zot6/IHandler.php

19 lines
223 B
PHP
Raw Normal View History

2018-04-23 01:51:46 +00:00
<?php
namespace Zotlabs\Zot6;
interface IHandler {
2018-06-25 01:54:29 +00:00
function Notify($data);
2018-04-23 01:51:46 +00:00
2018-06-25 01:54:29 +00:00
function Request($data);
2018-04-23 01:51:46 +00:00
2018-06-25 01:54:29 +00:00
function Rekey($sender,$data);
2018-04-23 01:51:46 +00:00
2018-06-25 01:54:29 +00:00
function Refresh($sender,$recipients);
2018-04-23 01:51:46 +00:00
2018-06-25 01:54:29 +00:00
function Purge($sender,$recipients);
2018-04-23 01:51:46 +00:00
}