streams/Zotlabs/Zot/IHandler.php

23 lines
274 B
PHP
Raw Normal View History

2015-12-08 00:01:54 +00:00
<?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);
}