streams/Code/Nomad/IHandler.php

15 lines
266 B
PHP
Raw Normal View History

2018-04-23 01:51:46 +00:00
<?php
2022-02-16 04:50:35 +00:00
namespace Code\Nomad;
2018-04-23 01:51:46 +00:00
2021-12-02 23:02:31 +00:00
interface IHandler
{
public function Notify($data, $hub);
2018-04-23 01:51:46 +00:00
2021-12-02 23:02:31 +00:00
public function Rekey($sender, $data, $hub);
2018-04-23 01:51:46 +00:00
2021-12-02 23:02:31 +00:00
public function Refresh($sender, $recipients, $hub, $force);
2018-04-23 01:51:46 +00:00
2021-12-02 23:02:31 +00:00
public function Purge($sender, $recipients, $hub);
2018-04-23 01:51:46 +00:00
}