Odonno / ReduxSimple

Simple Stupid Redux Store using Reactive Extensions
http://www.nuget.org/packages/ReduxSimple/
MIT License
143 stars 19 forks source link

Hide Dispatch method member #23

Closed Odonno closed 6 years ago

Odonno commented 6 years ago

With the new ReduxStoreWithHistory class, I noticed that we can override both the Dispatch and Reduce methods in derived class.

The first behavior of the Store class was to only allow overriding of Reduce function because the Dispatch function is internal and should remain as so.

So, I propose to use new instead of override keyword.