Skip to main content

Questions tagged [command-message]

Filter by
Sorted by
Tagged with
0 votes
2 answers
420 views

I have a discussion with a colleague regarding how to model a command that immediately gets an answer to it's HTTP POST request back. In this specific case we do an API call to a 3rd party IDP API ...
floriank's user avatar
  • 493
0 votes
2 answers
263 views

The intended effect (semantics) of the POST method is resource specific, e.g. executing a command with arguments: POST /command HTTP/1.1 {"parameter-1": "argument-1", "...
Géry Ogam's user avatar
0 votes
1 answer
889 views

Given I have a message bus that can handle commands and events. A command handler can dispatch an event. But should an event handler be able to dispatch another command? Or should event handlers only ...
TiMESPLiNTER's user avatar
2 votes
1 answer
676 views

I have a CQRS system in development that passes the Command to a CommandHandler, which gets an Aggregate from a Repository, and calls a method with the properties of the Command (converted to ...
designermonkey's user avatar
1 vote
1 answer
137 views

We have a system that generates lots of logs and we have to somehow maintain logging workflow in a project. The 'strict' (let's assume it's strict) requirement is that there should be a document ...
user avatar
1 vote
2 answers
3k views

I am currently looking into developing a new system utilizing hexagonal architecture and the commandpattern facilitated by a commandbus like tactician (it's a PHP system). Now I really like the idea ...
Tim Strijdhorst's user avatar
16 votes
3 answers
18k views

In CQRS/ES, a command is sent from the client to the server and routed to the appropriate command handler. That command handler loads an aggregate from its repository, and calls some method on it, and ...
magnus's user avatar
  • 674
12 votes
2 answers
3k views

Scenario: A customer places an order, then, after receiving the product, provides feedback on the order process. Assume the following aggregate roots: Customer Order Feedback Here are the business ...
magnus's user avatar
  • 674
1 vote
1 answer
49 views

I recently wrote a protocol I call RPEP (https://github.com/Tixit/RPEP), partially in response to the unfortunately named WAMP protocol. I'm looking for feedback as to whether the protocol is ...
B T's user avatar
  • 350
3 votes
1 answer
216 views

Long question context, skip to tl;dr for the meat of it. I am designing an integration between two web applications, and have come to the conclusion that a message pattern would be an appropriate ...
Aj_76's user avatar
  • 98
2 votes
2 answers
3k views

My goal is to build a command parser that has basic syntax and multiple possible branches at each point. These commands come from users of the system and are text input (no GUI). The basic syntax is ...
Andy's user avatar
  • 123
1 vote
1 answer
351 views

This is kind of a follow up question to this https://stackoverflow.com/questions/23743285/model-view-controller-and-callbacks, but I wanted to post it separately, because its kind of a different topic....
Kedu's user avatar
  • 113
14 votes
2 answers
6k views

Two enterprise integration patterns are the command message and the event message. I am working on a system in which we use messaging not only for integration with other systems, but for internal ...
Kazark's user avatar
  • 1,820