Flowsy.EventSourcing.Abstractions
2.0.0
See the version list below for details.
dotnet add package Flowsy.EventSourcing.Abstractions --version 2.0.0
NuGet\Install-Package Flowsy.EventSourcing.Abstractions -Version 2.0.0
<PackageReference Include="Flowsy.EventSourcing.Abstractions" Version="2.0.0" />
paket add Flowsy.EventSourcing.Abstractions --version 2.0.0
#r "nuget: Flowsy.EventSourcing.Abstractions, 2.0.0"
// Install Flowsy.EventSourcing.Abstractions as a Cake Addin #addin nuget:?package=Flowsy.EventSourcing.Abstractions&version=2.0.0 // Install Flowsy.EventSourcing.Abstractions as a Cake Tool #tool nuget:?package=Flowsy.EventSourcing.Abstractions&version=2.0.0
Flowsy Event Sourcing Abstractions
Event Sourcing is an architectural pattern in which changes to the state of an application are stored as a sequence of events. Instead of storing just the current state of the data in a domain, this pattern captures all changes as individual events. These events can be replayed to recreate the system's state at any point in time.
This package provides basic abstractions to implement applications based on event sourcing concepts.
IEvent
All the events defined by your application must implement the following interface:
/// <summary>
/// Represents a domain event.
/// </summary>
public interface IEvent
{
DateTimeOffset InitiationInstant { get; }
}
For example, we can define a ShoppingCartEvent abstract class and use it as the base class for all the events related to a given shopping cart.
public abstract class ShoppingCartEvent : IEvent
{
protected ShoppingCartEvent()
{
InitiationInstant = DateTimeOffset.Now;
}
DateTimeOffset InitiationInstant { get; }
}
public sealed class ShoppingCartCreated : ShoppingCartEvent
{
public ShoppingCartCreated(string shoppingCartId, string userId)
{
ShoppingCartId = shoppingCartId;
UserId = userId;
}
public string ShoppingCartId { get; }
public string UserId { get; }
}
public sealed class ShoppingCartItemAdded : ShoppingCartEvent
{
public ShoppingCartItemAdded(
string shoppingCartItemId,
string productId,
decimal productPrice,
double quantity
)
{
ShoppingCartItemId = shoppingCartItemId;
ProductId = productId;
ProductPrice = productPrice;
Quantity = quantity;
}
public string ShoppingCartItemId { get; }
public string ProductId { get; }
public decimal ProductPrice { get; }
public double Quantity { get; }
public decimal TotalPrice => ProductPrice * (decimal) Quantity;
}
public sealed class ShoppingCartItemRemoved : ShoppingCartEvent
{
public ShoppingCartItemRemoved(string shoppingCartItemId)
{
ShoppingCartItemId = shoppingCartItemId;
}
public string ShoppingCartItemId { get; }
}
// Define more events
// ...
public sealed class ShoppingCartOrderPlaced : ShoppingCartEvent
{
public ShoppingCartOrderPlaced(bool userIsPremium)
{
UserIsPremium = userIsPremium;
}
public bool UserIsPremium { get; }
}
IEventSource
The IEventSource interface represents an object that can produce events in our application.
This interface can be implemented by our entities or aggregate roots to ensure the consistency of changes being made and enforce invariants.
Though you can implement IEventSource, the EventSource abstract class in this package provides basic functionality to validate and apply events to a given entity of our domain.
public sealed class ShoppingCart : EventSource
{
public string UserId { get; private set; }
public bool UserIsPremium { get; private set; }
// List of fictitious ShoppingCartItem objects belonging to this shopping cart
private readonly List<ShoppingCartItem> _items = new ();
public IEnumerable<ShoppingCartItem> Items => _items;
public ShoppingCartStatus Status { get; private set; }
public decimal Total => _items.Sum(item => item.TotalPrice);
public decimal Discount { get; private set; }
public decimal GrandTotal => Total - Discount;
// Override the Apply method to provide the required actions for each type of event
protected override void Apply(IEvent @event)
{
switch (@event)
{
case ShoppingCartCreated e:
// The EventSource base class implements the Id property of type string defined in IEventSource.
// A convinient value for this property would be the shopping cart ID, so all
// the events related to a single shopping cart can be grouped using this identifer.
Id = e.ShoppingCartId;
UserId = e.UserId;
UserIsPremium = false;
Discount = 0m;
break;
case ShoppingCartItemAdded e:
var item = _items.FirstOrDefault(item => item.ShoppingCartItemId == e.ShoppingCartItemId);
if (item is null)
{
_items.Add(new ShoppingCartItem
{
ShoppingCartItemId = e.ShoppingCartItemId,
ProductId = e.ProductId,
ProductName = e.ProductName,
ProductPrice = e.ProductPrice,
Quantity = e.Quantity
});
}
else
{
item.Update(
e.ProductName,
e.ProductStock,
e.ProductPrice,
e.Quantity
);
}
Status = _items.Any() ? ShoppingCartStatus.Active : ShoppingCartStatus.Empty;
break;
case ShoppingCartItemRemoved e:
var item = _items.Find(i => i.ShoppingCartItemId == e.ShoppingCartItemId);
_items.Remove(item);
Status = _items.Any() ? ShoppingCartStatus.Active : ShoppingCartStatus.Empty;
break;
// Apply other events
// ...
case ShoppingCartOrderPlaced orderPlaced:
UserIsPremium = orderPlaced.UserIsPremium;
if (UserIsPremium)
Discount = Total * 0.15m;
Status = ShoppingCartStatus.OrderPlaced;
break;
default:
throw new NotSupportedException($"Event not supported: {@event.GetType().Name}");
}
}
public void CreateNew(string shoppingCartId, User user)
{
ApplyChange(new ShoppingCartCreated(shoppingCartId, User.UserId));
IsNew = true;
}
public void AddItem(string shoppingCartItemId, Product product, double quantity)
{
if (itemAdded.Quantity <= 0)
throw new InvalidShoppingCartQuantityException("Item quantity must be a positive number.");
var item = _items.FirstOrDefault(item => item.ShoppingCartItemId == shoppingCartItemId);
var newQuantity = (item?.Quantity ?? 0) + quantity;
// Product stock validation was placed here for demonstration purposes only,
// in real scenarios, product stock availability is usually verified on checkout.
if (newQuantity > product.Stock)
throw new ProductStockValidationException("Item quantity exceeds the current product stock."));
ApplyChange(new ShoppingCartItemAdded(
shoppingCartItemId,
product.ProductId,
product.Name,
product.Price,
quantity
));
}
public void RemoveItem(string shoppingCartItemId)
{
var item = _items.FirstOrDefault(i => i.ShoppingCartItem == shoppingCartItemId);
if (item is null)
throw new EntityNotFoundException($"Order item not found: {shoppingCartItemId}.")
ApplyChange(new ShoppingCartItemRemoved(shoppingCartItemId));
}
public void PlaceOrder(bool userIsPremium)
{
if (!_items.Any())
throw new EmptyShoppingCartException("The shopping cart is empty.");
ApplyChange(new ShoppingCartOrderPlaced(user.IsPremium));
}
// Add more methods to model business behavior
}
Event Source & Application Commands
It's a common practice to implement the CQRS pattern to perform actions on our entities or aggregate roots. The following examples demonstrate how to use the ShoppingCart event source to create and manage the user's shopping cart.
The Event Repository
This package includes the IEventRepository interface with methods to store and load events from some event store.
Note: The implementation of this interface is beyond the scope of this library, but you can take a look at the Flowsy.EventSourcing.Sql package, which includes an implementation based on Marten, a document database and event store library with PostgreSQL as the underlying database.
Create a Shopping Cart
public class CreateShoppingCartCommand
{
public CreateShoppingCartCommand(string shoppingCartId, string userId)
{
ShoppingCartId = shoppingCartId;
UserId = userId;
}
public string ShoppingCartId { get; }
public string UserId { get; }
}
public class CreateShoppingCartCommandHandler
{
private readonly IEventRepository _eventRepository;
private readonly IUserRepository _userRepository;
public CreateShoppingCartCommandHandler(
IEventRepository eventRepository,
IUserRepository userRepository
)
{
_eventRepository = eventRepository;
_userRepository = userRepository;
}
public async Task HandleAsync(CreateShoppingCartCommand command, CancellationToken cancellationToken)
{
var user = await _userRepository.GetByIdAsync(command.UserId, cancellationToken);
if (user is null)
throw new UserNotFoundException(userId);
var shoppingCart = new ShoppingCart();
shoppingCart.CreateNew(command.ShoppingCartId, user);
await _eventRepository.StoreAsync(shoppingCart, cancellationToken);
}
}
Add Items to a Shopping Cart
public class AddShoppingCartItemCommand
{
public AddShoppingCartItemCommand(
string shoppingCartId,
string shoppingCartItemId,
string productId
double quantity
)
{
ShoppingCartId = shoppingCartId;
ShoppingCartItemId = shoppingCartItemId;
ProductId = productId;
Quantity = quantity;
}
public string ShoppingCartId { get; }
public string ShoppingCartItemId { get; }
public string ProductId { get; }
public double Quantity { get; }
}
public class AddShoppingCartItemCommandHandler
{
private readonly IEventRepository _eventRepository;
private readonly IProductRepository _productRepository;
public AddShoppingCartItemCommandHandler(
IEventRepository eventRepository,
IProductRepository productRepository
)
{
_eventRepository = eventRepository;
_productRepository = productRepository;
}
public async Task HandleAsync(AddShoppingCartItemCommand command, CancellationToken cancellationToken)
{
var shoppingCart = _eventRepository.LoadAsync(command.ShoppingCartId, cancellationToken);
if (shoppingCart is null)
throw new EntityNotFoundException($"Shopping cart not found: {command.ShoppingCartId}");
var product = await _productRepository.GetByIdAsync(command.ProductId, cancellationToken);
if (product is null)
throw new EntityNotFoundException($"Product not found: {command.ProductId}");
shoppingCart.AddItem(
command.ShoppingCartItemId,
product,
command.Quantity
);
await _eventRepository.StoreAsync(shoppingCart, cancellationToken);
}
}
Remove Items from a Shopping Cart
public class RemoveShoppingCartItemCommand
{
public RemoveShoppingCartItemCommand(
string shoppingCartId,
string shoppingCartItemId
)
{
ShoppingCartId = shoppingCartId;
ShoppingCartItemId = shoppingCartItemId;
}
public string ShoppingCartId { get; }
public string ShoppingCartItemId { get; }
}
public class RemoveShoppingCartItemCommandHandler
{
private readonly IEventRepository _eventRepository;
public RemoveShoppingCartItemCommandHandler(IEventRepository eventRepository)
{
_eventRepository = eventRepository;
}
public async Task HandleAsync(RemoveShoppingCartItemCommand command, CancellationToken cancellationToken)
{
var shoppingCart = _eventRepository.LoadAsync(command.ShoppingCartId, cancellationToken);
if (shoppingCart is null)
throw new EntityNotFoundException($"Shopping cart not found: {command.ShoppingCartId}");
shoppingCart.RemoveItem(command.ShoppingCartItemId);
await _eventRepository.StoreAsync(shoppingCart, cancellationToken);
}
}
Place the Order
public class PlaceShoppingCartOrderCommand
{
public PlaceShoppingCartOrderCommand(
string shoppingCartId,
string cardNumber,
string cardHolder,
int cardExpirationYear,
int cardExpirationMonth,
string cardSecurityCode
)
{
ShoppingCartId = shoppingCartId;
CardNumber = cardNumber;
CardHolder = cardHolder;
CardExpirationYear = cardExpirationYear;
CardExpirationMonth = cardExpirationMonth;
CardSecurityCode = cardSecurityCode;
}
public string ShoppingCartId { get; }
public string CardNumber { get; }
public string CardHolder { get; }
public int CardExpirationYear { get; }
public int CardExpirationMonth { get; }
public string CardSecurityCode { get; }
}
public class PlaceShoppingCartOrderCommandHandler
{
private readonly IEventRepository _eventRepository;
private readonly IPaymentService _paymentService;
public PlaceShoppingCartOrderCommandHandler(
IEventRepository eventRepository;,
IPaymentService paymentService
)
{
_eventRepository = eventRepository;
_paymentService = paymentService;
}
public async Task HandleAsync(PlaceShoppingCartOrderCommand command, CancellationToken cancellationToken)
{
var shoppingCart = _eventRepository.LoadAsync(command.ShoppingCartId, cancellationToken);
if (shoppingCart is null)
throw new EntityNotFoundException($"Shopping cart not found: {command.ShoppingCartId}");
// Load user data
var user = await unitOfWork.UserRepository.GetByIdAsync(shoppingCart.UserId, cancellationToken);
if (user is null)
throw new EntityNotFoundException($"User not found: {shoppingCart.UserId}");
// Change the shopping cart state to 'OrderPlaced'
shoppingCart.PlaceOrder(user.IsPremium);
// Process payment
await paymentService.ChargeAsync(
shoppingCart,
command.CardNumber,
command.CardHolder,
command.CardExpirationYear,
command.CardExpirationMonth,
command.CardSecurityCode,
cancellationToken
);
// Persist the shopping cart events only if the payment was processed successfully
await _eventRepository.StoreAsync(shoppingCart, cancellationToken);
}
}
Publishing Events
By implementing the IEventPublisher interface we can notify another components of our application when something relevant occurs. For instance, we could define an abstract Event class and inherit all our events from it, then use the MediatR library to publish our event as a notification.
The EventRepository class from the Flowsy.EventSourcing.Sql package implements the IEventRepository interface defined in this package and accepts an optional IEventPublisher instance through its constructor, so it can automatically publish the events of an IEventSource once they are persisted in the event store.
Event Publisher
public sealed class EventPublisher : IEventPublisher
{
private readonly IPublisher _mediatorPublisher;
public EventPublisher(IPublisher mediatorPublisher)
{
_mediatorPublisher = mediatorPublisher;
}
// Publish events asynchronously
public async Task PublishAsync(IEventSource eventSource, CancellationToken cancellationToken)
{
await PublishAsync(eventSource.Events, cancellationToken);
}
// Publish events asynchronously
public async Task PublishAsync(IEnumerable<IEvent> events, CancellationToken cancellationToken)
{
foreach (var e in events.Where(e => e is INotification))
await _mediatorPublisher.Publish(e, cancellationToken);
}
// Publish events without waiting for a task for termination.
public void PublishAndForget(IEventSource eventSource)
{
PublishAndForget(eventSource.Events);
}
// Publish events without waiting for a task for termination.
public void PublishAndForget(IEnumerable<IEvent> events)
{
Task.Run(() =>
{
try
{
PublishAsync(events, CancellationToken.None).Wait();
}
catch (Exception exception)
{
// Handle the exception
}
});
}
}
Customizing Events
We could create an abstract class to define properties to be inherited by all the events in our application.
public abstract class Event
: IEvent, INotification // INotification comes from MediatR
{
protected Event(string initiationUserId)
{
// The initiation instant will always be the exact moment the event object is instantiated.
// This can be useful to sort events chronologically even before they are persisted in the event store.
InitiationInstant = DateTimeOffset.Now;
// We could include a user ID to keep track of the users initiating the application events.
InitiationUserId = initiationUserId;
}
public DateTimeOffset InitiationInstant { get; }
public string InitiationUserId { get; }
}
Important Note
The previous examples were written only to show how to use the abstractions included in this package, in real applications, there are more elements to consider, such as distributed transactions, error handling, logging and so on.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- Newtonsoft.Json (>= 13.0.3)
- System.Text.Json (>= 8.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Flowsy.EventSourcing.Abstractions:
Package | Downloads |
---|---|
Flowsy.EventSourcing.Sql
Event sourcing patterns powered by a SQL database. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
4.0.0 | 113 | 9/3/2024 |
3.0.0 | 104 | 5/25/2024 |
2.2.0 | 196 | 1/14/2024 |
2.1.0 | 133 | 1/13/2024 |
2.0.2 | 136 | 1/11/2024 |
2.0.1 | 100 | 1/11/2024 |
2.0.0 | 106 | 1/11/2024 |
1.1.0 | 217 | 12/10/2023 |
1.0.1 | 118 | 12/10/2023 |
1.0.0 | 106 | 12/10/2023 |
0.3.0 | 145 | 10/30/2023 |
0.2.0 | 180 | 10/30/2023 |
0.1.3 | 124 | 10/30/2023 |
0.1.2 | 134 | 10/30/2023 |
0.1.1 | 106 | 10/30/2023 |
0.1.0 | 108 | 10/30/2023 |