Yoda/src/Interface/Model/Buffer.php

21 lines
No EOL
287 B
PHP

<?php
declare(strict_types=1);
namespace Yggverse\Yoda\Interface\Model;
/*
* Shared memory API for async operations
*
*/
interface Buffer
{
public function get(
string $key
): mixed;
public function set(
string $key,
mixed $value
): void;
}