Giter VIP home page Giter VIP logo

Comments (2)

elieahd avatar elieahd commented on July 20, 2024 1

Here is how I would do it

I would create an outbound port EventPublisherPort

package io.reflectoring.buckpal.application.port.out;

public interface EventPublisherPort {

   void publish(Event event);

}

with Event being an interface :

package io.reflectoring.buckpal.application.domain.events;

public interface Event {

    String getObjectId(); // change to whatever suits you 

    String getPayload(); // change to whatever suits you 

}

That way, the account withdrawal event (AccountWithdrawEvent) will implement a new event :

package io.reflectoring.buckpal.application.domain.events;

public class AccountWithdrawEvent implements Event {

    private final AccountId targetAccountId;
    private final Money money;

    public AccountWithdrawEvent(AccountId targetAccountId, Money money) {
        this.targetAccountId = targetAccountId;
        this.money = money; 
    }

   @Override
   public String getObjectId() {
       // implement depending on your use case
      ...
   }

   @Override
   public String getPayload() {
       // implement depending on your use case
       // you can transform into a json for example
      ...
   }

}

That way in your SendMoneyService you will inject the EventPublisherPort :

...
public class SendMoneyService implements SendMoneyUseCase {

	private final LoadAccountPort loadAccountPort;
	private final AccountLock accountLock;
	private final UpdateAccountStatePort updateAccountStatePort;
	private final MoneyTransferProperties moneyTransferProperties;
	private final EventPublisherPort eventPublisherPort;

       ...

}

And publish the event whenever the withdrawal occurs ...

Thoughts ?

from buckpal.

ByeongUkChoi avatar ByeongUkChoi commented on July 20, 2024

Great!

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.