|
The goals of this task are to:
- Improve the SBE stage builder so that, for each QSN node type, there is a mechanism for optionally providing a "buildBlockXXX()" method that would act like a "block-based" version of the corresponding buildXXX() method, and add a single "buildBlock()" method that handles dispatching to the appropriate buildBlockXXX() or buildXXX() method.
- Split buildUnpackTsBucket() into 2 methods: the "block-based" version named
"buildBlockUnpackTsBucket()" and the standard version named "buildUnpackTsBucket()".
- Update buildGroup() to call buildBlock().
|