aboutsummaryrefslogblamecommitdiffstats
path: root/Zotlabs/Zot6/IHandler.php
blob: 53b6caa8902adcfd5d595c34b436c5e8421a96c4 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                   
<?php

namespace Zotlabs\Zot6;

interface IHandler {

	function Notify($data,$hub);

	function Request($data,$hub);

	function Rekey($sender,$data,$hub);

	function Refresh($sender,$recipients,$hub);

	function Purge($sender,$recipients,$hub);

}