rename buffer to pool

This commit is contained in:
yggverse 2024-07-16 18:58:56 +03:00
parent 7212e44314
commit 4eeb7b3971
3 changed files with 36 additions and 32 deletions

View file

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