This commit is contained in:
2022-10-11 14:33:33 +08:00
parent bc2275300d
commit 3dd5311430
6 changed files with 344 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
namespace Kiri\Actor;
interface ActorInterface
{
/**
* @param mixed $message
* @return void
*/
public function process(mixed $message): void;
}