aboutsummaryrefslogblamecommitdiffstats
path: root/Zotlabs/Zot/IHandler.php
blob: eeca1555cc37fc84c0f125150d91ea6c76b624cf (plain) (tree)





















                                              
<?php

namespace Zotlabs\Zot;

interface IHandler {

	function Ping();

	function Pickup($data);

	function Notify($data);

	function Request($data);

	function AuthCheck($data,$encrypted);

	function Purge($sender,$recipients);

	function Refresh($sender,$recipients);

}