-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
adding isAggregator
flag
#53
Conversation
This commit adds an optional `isAggregator` flag to `beaconResponseMeta` which will allow especially aggregators to avoid duplications & loops.
... and this is a non-breaking addition so no delay necessary. |
Would it be better to put it in the beaconInformationalResponseMeta? Other thing is to distinguish resultsets, but in this case it should be per resultset (ResultsetInstance)? Dmitry |
@redmitry Good point; added it to But it should also stay in the normal responses since otherwise it could only be accessed w/ multiple passes. Resultsets: The idea is that all resultSets are treated equally; i.e. an aggregator will concatenate the |
|
85e2951
to
9ae6447
Compare
This commit adds an optional
isAggregator
flag tobeaconResponseMeta
which will allow especially aggregators to avoid duplications & loops.