mirror of
https://github.com/appwrite/appwrite
synced 2026-05-15 21:19:19 +00:00
13 lines
211 B
PHP
13 lines
211 B
PHP
<?php
|
|
|
|
namespace Appwrite\PubSub;
|
|
|
|
interface Adapter
|
|
{
|
|
public function ping($message = null): bool;
|
|
|
|
public function subscribe($channels, $callback);
|
|
|
|
public function publish($channel, $message);
|
|
|
|
}
|