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

"All instances" method for event stream readers #19

Closed MerrionComputing closed 4 years ago

MerrionComputing commented 4 years ago

We need a way for an event stream reader to return the set of unique identifiers for all of the unique instances in the system.

This will allow for these to be run through Classification processes in order to perform set based functionality.

MerrionComputing commented 4 years ago

It is highly likely that some form of cacheing methodology would be desirable for this.

MerrionComputing commented 4 years ago

Logically this should be a property of the Classification class(es)

MerrionComputing commented 4 years ago

Added as GetAllInstanceKeys - needs function "GetAllAccountNumbers" to test

MerrionComputing commented 4 years ago

Done and added a function to the test project "GetAllAccounts".