Skip to main content

Domain modeling types aett event store

Project description

Æt (Aett) is an Event Store for Python

Downloads

Aett Domain provide base classes for aggregate and saga as encapsulations of business rules and processes, respectively.

Usage

The Aggregate class is abstract and a subtype aggregate would implement the external interfaces and internal behavior and define which events are raised as a response input.

from aett.domain.Domain import Aggregate
from dataclasses import dataclass
from aett.eventstore.EventStream import EventStream, Memento, DomainEvent
import datetime


@dataclass(frozen=True, kw_only=True)
class SampleEvent(DomainEvent):
    value: int


class ExampleAggregate(Aggregate[Memento]):
    def __init__(self, event_stream: EventStream, memento: Memento = None):
        self.value = 0
        super().__init__(event_stream, memento)

    def apply_memento(self, memento: Memento) -> None:
        if self.id != memento.id:
            raise ValueError("Memento id does not match aggregate id")
        self.value = memento.payload

    def get_memento(self) -> Memento:
        """
        The memento is a snapshot of the aggregate state. It is used to rehydrate the aggregate.
        
        It is backed by the Python __getstate__ and __setstate__ methods.
        """
        return Memento(id=self.id, version=self.version, payload={'key': self.value})

    def set_value(self, value: int) -> None:
        self.raise_event(
            SampleEvent(value=value, id=self.id, version=self.version,
                      timestamp=datetime.datetime.now(datetime.timezone.utc)))

    def _apply(self, event: SampleEvent) -> None:
        """
        The apply method is a convention named method to apply the event to the aggregate. It is called from the raise_event method using multiple dispatch
        """
        self.value = event.value

The saga class is likewise abstract and a subtype saga would implement the external interfaces and internal behavior, similar to the aggregate class.

from aett.domain.Domain import Saga
from aett.eventstore.EventStream import DomainEvent
from dataclasses import dataclass


@dataclass(frozen=True, kw_only=True)
class SampleEvent(DomainEvent):
    value: int

    
class SampleSaga(Saga):
    def _apply(self, event: SampleEvent) -> None:
        pass

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aett_domain-2.1.0.tar.gz (10.6 kB view details)

Uploaded Source

Built Distribution

aett_domain-2.1.0-py3-none-any.whl (16.9 kB view details)

Uploaded Python 3

File details

Details for the file aett_domain-2.1.0.tar.gz.

File metadata

  • Download URL: aett_domain-2.1.0.tar.gz
  • Upload date:
  • Size: 10.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.7

File hashes

Hashes for aett_domain-2.1.0.tar.gz
Algorithm Hash digest
SHA256 0659089cd7b85f597b6cb8170ac44606e93bebdfb457d75cd7eb0f9815b12af6
MD5 ad89885a95504e7fa56969aff95188de
BLAKE2b-256 bcdceade2ea57ad91ef14e363948b674cff45e02507f920511e7110f69729c9b

See more details on using hashes here.

File details

Details for the file aett_domain-2.1.0-py3-none-any.whl.

File metadata

  • Download URL: aett_domain-2.1.0-py3-none-any.whl
  • Upload date:
  • Size: 16.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.7

File hashes

Hashes for aett_domain-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b1d7a9bd3d673fc999f76ce52c9ad9bea485a095f068d42424bedb3f25b60814
MD5 89fcd6f3cea41babaa3cc62a6ce683c9
BLAKE2b-256 00349a1e1b683bc721645a968b687d8fa11886508e5f10ae75f7f81cd2e58429

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page