You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@avro.apache.org by GitBox <gi...@apache.org> on 2022/02/04 14:10:29 UTC

[GitHub] [avro] KyleSchoonover commented on pull request #1515: AVRO-3364 Breakout subclasses for GenericDatumReader

KyleSchoonover commented on pull request #1515:
URL: https://github.com/apache/avro/pull/1515#issuecomment-1030020381


   The important part is 
   `public partial class GenericDatumReader<T>`
   Specifically the keyword partial.  There are really 2 reasons to use this.  The first is very large classes may need to be broken apart in many files for it to be easier to maintain.  The second, which is what I did was to move complete sub classes to their own file.  This actually doesn't change how the application compiles, but more for organizational and maintenance reasons.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@avro.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org