Giter Site home page Giter Site logo

Comments (2)

codeliner avatar codeliner commented on July 28, 2024

Hi,

ProcessManagers listen on events $eventEngine->on(<event_name>, <proces_manager>) like described in the tutorial

If a process manager should dispatch a new command handled by the same app, you can also use a short cut by returning a command from a static method:

final class MyProcessManager
{
  public static function onSomethingHappened(Message $somethingHappened): array
  {
    // Return command tuple (when using PrototypingFlavour or a command instance for other Flavour)
    return [
      Command::DO_SOEMTHING_AFTER_EVENT,
      $somethingHappend->payload(), // Map payload from event to command if needed
      [ /* optional metadata array */ ]
    ];
  }
}

// Register the process manager in a Description using callable array syntax
$eventEngine->on(Event::SOMETHING_HAPPENED, [MyProcessManager::class, 'onSomethingHappened']);

The short cut is not documented yet as this is a relatively new feature. The way shown in the Tutorial is the preferred way when the process manager requires dependencies. With the short cut you avoid the round trip to the DI container which is nice for simple IF THIS THAN THAT scenarios.

from php-engine.

arnedesmedt avatar arnedesmedt commented on July 28, 2024

Thank you very much for the explanation!

I forgot that their was a process manager subtitle in the tutorial.

from php-engine.

Related Issues (14)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.