Interface StartTimeExtractor<REQUEST>
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface StartTimeExtractor<REQUEST>
Extractor of the start time of request processing. AStartTimeExtractorshould always use the same timestamp source as the correspondingEndTimeExtractor- extracted timestamps must be comparable.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Instantextract(REQUEST request)Returns the timestamp marking the start of the request processing.
-