File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -31,13 +31,19 @@ type TextMapCarrier interface {
3131
3232// MultiTextMapCarrier is a TextMapCarrier that can return multiple values for a single key.
3333type MultiTextMapCarrier interface {
34+ // DO NOT CHANGE: any modification will not be backwards compatible and
35+ // must never be done outside of a new major release.
36+
3437 TextMapCarrier
3538 MultiGetter
3639}
3740
3841// MultiGetter can return multiple values for a single key,
3942// with contrast to TextMapCarrier.Get which returns a single value.
4043type MultiGetter interface {
44+ // DO NOT CHANGE: any modification will not be backwards compatible and
45+ // must never be done outside of a new major release.
46+
4147 // Values returns all values associated with the passed key.
4248 Values (key string ) []string
4349 // DO NOT CHANGE: any modification will not be backwards compatible and
You can’t perform that action at this time.
0 commit comments