streams/Zotlabs/Zot/IHandler.php
2015-12-07 16:01:54 -08:00

22 lines
274 B
PHP

<?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);
}