Uses of Interface
zipkin2.Call.Mapper
-
Packages that use Call.Mapper Package Description zipkin2 zipkin2.storage -
-
Uses of Call.Mapper in zipkin2
Methods in zipkin2 with parameters of type Call.Mapper Modifier and Type Method Description <R> Call<R>Call. map(Call.Mapper<V,R> mapper)Maps the result of this call into a different shape, as defined by themapperfunction. -
Uses of Call.Mapper in zipkin2.storage
Classes in zipkin2.storage that implement Call.Mapper Modifier and Type Class Description classGroupByTraceIdA mapper that groups unorganized input spans by trace ID.Methods in zipkin2.storage that return Call.Mapper Modifier and Type Method Description static Call.Mapper<List<Span>,List<List<Span>>>GroupByTraceId. create(boolean strictTraceId)static Call.Mapper<List<Span>,List<Span>>StrictTraceId. filterSpans(String traceId)static Call.Mapper<List<List<Span>>,List<List<Span>>>StrictTraceId. filterTraces(Iterable<String> traceIds)Returns a function that filters its mutable input when it contains a trace not matching the specified trace IDs.static Call.Mapper<List<List<Span>>,List<List<Span>>>StrictTraceId. filterTraces(QueryRequest request)Filters the mutable input client-side when there's a clash on lower 64-bits of a trace ID.
-