The problem this aims to solve is that AbstractActionReader is not super flexible, since you are obligated to keep its private parts. It makes extending it quite tricky, if you don't need the private parts for your ActionReader to work.
To make it more flexible, an IActionReader interface was created, and that is now what other classes look require.
Fixes #165.
The problem this aims to solve is that
AbstractActionReader
is not super flexible, since you are obligated to keep its private parts. It makes extending it quite tricky, if you don't need the private parts for your ActionReader to work.To make it more flexible, an IActionReader interface was created, and that is now what other classes look require.