streak icon indicating copy to clipboard operation
streak copied to clipboard

Add Listener\ Initializable interface

Open alanbem opened this issue 9 months ago • 0 comments

interface Initializable
{
     public function initialize(): void;
}
class OrdersProjector implements Listener, Listener\Initializable
{
	
     public function initialize(): void
     {
          // for example create database table, during first run
     }
}

The method initialize would be run only once when subscription starts to process first event. It should not run after reset

alanbem avatar Apr 12 '25 00:04 alanbem