MerrionComputing / EventsSourcing-on-Azure-Functions

A library to demonstrate doing Event Sourcing as a data persistence mechanism for Azure Functions
MIT License
103 stars 20 forks source link

Classifiers on demand #20

Closed MerrionComputing closed 3 years ago

MerrionComputing commented 4 years ago

Also as a result of the "a command or query instance is an entity with its own backing event stream" combined with "notifications are sent when an event is appended to an event stream", a classifier request can be handled by an azure function spun up specifically for that purpose without the need for an orchestration.

This will allow classification to be executed as a "swarm"..

MerrionComputing commented 4 years ago

Classifier events are:
Classifier Requested - when a command or query decides it needs a classifier done Classifier Result Returned - when the classifier result is returned to the command or query

MerrionComputing commented 3 years ago

Need a way for each Command or Query to return the set of classifiers still to be processed.

MerrionComputing commented 3 years ago

Added to Query and Command class