does it make sense to use event sourcing and CQRS in an application
which uses synchronous communication (in an environment without
scalability requirements for example)?
Would it be wrong to return a state-object back to the client after a
command has been processed?
What do you think?
Matthias
What do you think?
Matthias
In order to show a certain screen, the client would still query a
read-only-query-database. But if a command could not be processed
because a business rule was violated, the command handler would return
an error message to the client.
Regards
Matthias
Its common to return an ack/nak from a command
So you don't mean 'State' but 'Status', then yes thats perfectly normal in my world.
On Feb 4, 2011 4:08 PM, "Matthias Kampen" <mkmailingl...@googlemail.com> wrote:
√iktor Klang wrote:
>
>
>
> On Fri, Feb 4, 2011 at 2:04 PM, Matthias Kampen
> <mkmailingl...@googlemail.com
> <mailto:mkmailingl...@googlemail.com>> wrote:
>
> Hi all,
>
> does it make sense to u...