We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f5ae04 commit d19907dCopy full SHA for d19907d
hypertrace-core-graphql-span-schema/src/main/java/org/hypertrace/core/graphql/span/joiner/SpanJoiner.java
@@ -32,6 +32,16 @@ public <T> Single<ListMultimap<T, Span>> joinSpans(
32
}
33
};
34
35
+ default <T> Single<Map<T, Span>> joinSpan(
36
+ Collection<T> joinSources, SpanIdGetter<T> spanIdGetter) {
37
+ return joinSpan(joinSources, spanIdGetter, Collections.emptyList());
38
+ }
39
+
40
+ default <T> Single<ListMultimap<T, Span>> joinSpans(
41
+ Collection<T> joinSources, MultipleSpanIdGetter<T> multipleSpanIdGetter) {
42
+ return joinSpans(joinSources, multipleSpanIdGetter, Collections.emptyList());
43
44
45
<T> Single<Map<T, Span>> joinSpan(
46
Collection<T> joinSources,
47
SpanIdGetter<T> spanIdGetter,
0 commit comments