Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 635 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 635 Bytes

Micro Service Reactor

Usage

    protected function execute(InputInterface $input, OutputInterface $output): void
    {
        $this->input  = $input;
        $this->output = $output;
        
        $this->microServiceReactor = new MicroServiceReactor('127.0.0.1', 9001, 'passport', 1000);

        $this->microServiceReactor->setController([$this, 'generate']);
        $this->microServiceReactor->setLogger([$this, 'log']);

        $this->microServiceReactor->process();
    }

License

The Soft Deletable Bundle is open-sourced software licensed under the MIT license.