Posts marked with “events”

Sustainable PHP: Developing Domain Events

by · November 11, 2020

0
 

Domain Events are one of the mainstays of modern Domain-Driven Design. They’re powerful, simple, useful. However, when developing them, we need to consider infrastructure. We’ll examine the need for explicit database transactions, view a table design, and provide a way to do our future selves a favor!

 

CQRS & Event Sourcing in the Wild

by · December 1, 2017

0
 

In software development, change is pretty much the only constant factor. In fact, embracing change is one of the twelve principles behind the Agile Manifesto. The need for adaptability and ability to change becomes especially apparent when developing an application, or a product, for a longer amount of time. As time passes, our understanding of […]

 

Callbacks in ActionScript

by · June 7, 2010

4
 

What do you do when component A needs to update itself only after component B completes an asynchronous task. In Flex, it is pretty easy to solve this problem using a simple concept called Callbacks.