Giter VIP home page Giter VIP logo

Comments (3)

thombergs avatar thombergs commented on July 20, 2024

Hi @jaylensoeur

you're right, the input and output ports I discuss in my book and use in the Buckpal application don't match with Uncle Bob's definition at first sight.

The control flow above is only applicable to a UI-based application (fat client) where the use case implementation needs to change the state of the UI. So, the use case implementation (what he calls an "Interactor") calls an interface (output port). The implementation of that output port (the "presenter") reacts to this call and changes the state of the UI.

The above doesn't work for server-side web applications, because they don't have a UI.

Instead, I took the idea of the input and output ports from Hexagonal Architecture. The control flow is the following:

  • Controller (i.e. SendMoneyController)
  • Use case input port (i.e. SendMoneyUseCase)
  • Use case implementation (i.e. SendMoneyService)
  • Use case output port (i.e. LoadAccountPort)
  • Output port implementation (i.e. AccountPersistenceAdapter)

If you look closer, it's pretty much the same as in Uncle Bob's picture above, though. The only real difference is that the output port doesn't change the state of the UI, but the state of the database.

If you have an interactive UI, nothing prevents you from implementing an output port that changes the state of the UI, too (from a web backend, you'd have to use something like Websockets to do that, though).

So the two concepts are compatible, after all :).

Does that answer your question? It was fun to answer, made me understand it a bit better, too :).

from buckpal.

jaylensoeur avatar jaylensoeur commented on July 20, 2024

👍 thanks!

from buckpal.

jaylensoeur avatar jaylensoeur commented on July 20, 2024

ports-and-adapers

this is from DDD distilled by Vaughn Vernon

from buckpal.

Related Issues (20)

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.