pacmancoder / dcdr

Distributed Computing Distributed Raytracer
MIT License
1 stars 0 forks source link

Divide parcel serializer into separate classes #7

Closed pacmancoder closed 6 years ago

pacmancoder commented 6 years ago

Current parcel serializer intrrface is very bloated - it contains serializer functions for all parcel types. It should be divided on separate classes for each parcel type. Root serializer should return optional value (or throw if no sub-serializer?) with reference on sub-serializer.

pacmancoder commented 6 years ago

Done