aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Zot6/IHandler.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-05-27 17:42:28 +0000
committerMario <mario@mariovavti.com>2021-05-27 17:42:28 +0000
commit3eb1b9d168644ed4fd8bca5de8360c7ededbacfc (patch)
treec58c0bd88ae65d52dc36511550a7760cb4bed4ad /Zotlabs/Zot6/IHandler.php
parent2fb3d6ddf5e72b97fbbdfbc65cdaba90ff73d4b8 (diff)
downloadvolse-hubzilla-3eb1b9d168644ed4fd8bca5de8360c7ededbacfc.tar.gz
volse-hubzilla-3eb1b9d168644ed4fd8bca5de8360c7ededbacfc.tar.bz2
volse-hubzilla-3eb1b9d168644ed4fd8bca5de8360c7ededbacfc.zip
remove reply_message_request(), implement force_refresh and minor fixes
Diffstat (limited to 'Zotlabs/Zot6/IHandler.php')
-rw-r--r--Zotlabs/Zot6/IHandler.php10
1 files changed, 4 insertions, 6 deletions
diff --git a/Zotlabs/Zot6/IHandler.php b/Zotlabs/Zot6/IHandler.php
index 53b6caa89..4e7738926 100644
--- a/Zotlabs/Zot6/IHandler.php
+++ b/Zotlabs/Zot6/IHandler.php
@@ -4,15 +4,13 @@ namespace Zotlabs\Zot6;
interface IHandler {
- function Notify($data,$hub);
+ function Notify($data, $hub);
- function Request($data,$hub);
+ function Rekey($sender, $data, $hub);
- function Rekey($sender,$data,$hub);
+ function Refresh($sender, $recipients, $hub, $force);
- function Refresh($sender,$recipients,$hub);
-
- function Purge($sender,$recipients,$hub);
+ function Purge($sender, $recipients, $hub);
}