-
Notifications
You must be signed in to change notification settings - Fork 0
Review suggestions #1
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| /*- | ||
| * #%L | ||
| * Elastic APM Java agent | ||
| * %% | ||
| * Copyright (C) 2018 - 2020 Elastic and contributors | ||
| * %% | ||
| * Licensed to Elasticsearch B.V. under one or more contributor | ||
| * license agreements. See the NOTICE file distributed with | ||
| * this work for additional information regarding copyright | ||
| * ownership. Elasticsearch B.V. licenses this file to you under | ||
| * the Apache License, Version 2.0 (the "License"); you may | ||
| * not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, | ||
| * software distributed under the License is distributed on an | ||
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| * KIND, either express or implied. See the License for the | ||
| * specific language governing permissions and limitations | ||
| * under the License. | ||
| * #L% | ||
| */ | ||
| package co.elastic.apm.agent.impl.transaction; | ||
|
|
||
| public abstract class AbstractHeaderGetter<T, C> implements HeaderGetter<T, C> { | ||
| @Override | ||
| public <S> void forEach(String headerName, C carrier, S state, HeaderConsumer<T, S> consumer) { | ||
| T firstHeader = getFirstHeader(headerName, carrier); | ||
| if (firstHeader != null) { | ||
| consumer.accept(firstHeader, state); | ||
| } | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -31,6 +31,23 @@ public interface HeaderGetter<T, C> { | |
| @Nullable | ||
| T getFirstHeader(String headerName, C carrier); | ||
|
|
||
| @Nullable | ||
| Iterable<T> getHeaders(String headerName, C carrier); | ||
| /** | ||
| * Calls the consumer for each header value with the given key | ||
| * until all entries have been processed or the action throws an exception. | ||
| * <p> | ||
| * The third parameter lets callers pass in a stateful object to be modified with header values, | ||
| * so the {@link HeaderConsumer} implementation itself can be stateless and potentially reusable. | ||
| * </p> | ||
| * | ||
| * @param headerName the name of the header | ||
| * @param carrier the object containing the headers | ||
| * @param state the object to be passed as the second parameter to each invocation on the specified consumer | ||
| * @param consumer the action to be performed for each header value | ||
| * @param <S> the type of the state object | ||
| */ | ||
| <S> void forEach(String headerName, C carrier, S state, HeaderConsumer<T, S> consumer); | ||
|
|
||
| interface HeaderConsumer<T, S> { | ||
| void accept(T headerValue, S state); | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The consumer states I currently see are:
Since the caller (i.e. agent) is aware of these states and can easily make the consumer aware of them, I currently don't see a user for the state. What did you have in mind? Can you provide an example?
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. OK, implementing now and realized what you had in mind 👍 |
||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we encourage hiding from the agent when multiple header values iteration is not supported?