Redesign Connection Class structure
Summary
The Connection class defines both read()
and write()
, which not all Connections implement.
Also the typing for from_node
does not work properly, since a BaseSeriesConnection
will get type BaseConnection
(thus read_series
isn't allowed to be called)
Explain your context
https://en.wikipedia.org/wiki/Interface_segregation_principle
What is the expected correct behavior? What was your goal?
Define interfaces for each functionality and then let connections inherit from those.
E.g. FieldConnectionType (read, write, subscribe) and SeriesConnectionType (read_series)
Edited by A.Clement