aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Zot/IHandler.php
blob: dd82f5be69eb5670ac5d4bb74b4f06aad9e5bb50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php

namespace Zotlabs\Zot;

interface IHandler {

	function Ping();

	function Pickup($data);

	function Notify($data);

	function Request($data);

	function Rekey($sender,$data);

	function AuthCheck($data,$encrypted);

	function Purge($sender,$recipients);

	function Refresh($sender,$recipients);

}