Uses of Class
com.amazonaws.util.TimingInfo
-
Packages that use TimingInfo Package Description com.amazonaws.handlers com.amazonaws.metrics.internal.cloudwatch.spi com.amazonaws.services.sqs com.amazonaws.util -
-
Uses of TimingInfo in com.amazonaws.handlers
Methods in com.amazonaws.handlers with parameters of type TimingInfo Modifier and Type Method Description void
AbstractRequestHandler. afterResponse(Request<?> request, Object response, TimingInfo timingInfo)
Deprecated.void
RequestHandler. afterResponse(Request<?> request, Object response, TimingInfo timingInfo)
Deprecated.Runs any additional processing logic on the specified request (after is has been executed by the client runtime). -
Uses of TimingInfo in com.amazonaws.metrics.internal.cloudwatch.spi
Methods in com.amazonaws.metrics.internal.cloudwatch.spi with parameters of type TimingInfo Modifier and Type Method Description static long
RequestMetricTransformer.Utils. endTimeMilli(TimingInfo ti)
static Date
RequestMetricTransformer.Utils. endTimestamp(TimingInfo ti)
-
Uses of TimingInfo in com.amazonaws.services.sqs
Methods in com.amazonaws.services.sqs with parameters of type TimingInfo Modifier and Type Method Description void
MessageMD5ChecksumHandler. afterResponse(Request<?> request, Object response, TimingInfo timingInfo)
-
Uses of TimingInfo in com.amazonaws.util
Fields in com.amazonaws.util declared as TimingInfo Modifier and Type Field Description protected TimingInfo
AWSRequestMetrics. timingInfo
Methods in com.amazonaws.util that return TimingInfo Modifier and Type Method Description TimingInfo
TimingInfo. endTiming()
TimingInfo
TimingInfo. getLastSubMeasurement(String subMeasurementName)
TimingInfo
TimingInfo. getSubMeasurement(String subMeasurementName)
TimingInfo
TimingInfo. getSubMeasurement(String subMesurementName, int index)
TimingInfo
AWSRequestMetrics. getTimingInfo()
static TimingInfo
TimingInfo. newTimingInfoFullSupport(long startTimeNano, long endTimeNano)
Returns aTimingInfoFullSupport
based on the given start and end time in nanosecond, ignoring the wall clock time.static TimingInfo
TimingInfo. newTimingInfoFullSupport(long startEpochTimeMilli, long startTimeNano, long endTimeNano)
Returns aTimingInfoFullSupport
based on the given start time since epoch in millisecond, and the given start and end time in nanosecond.static TimingInfo
TimingInfo. startTiming()
Captures the current wall clock time (since epoch in millisecond) and the current time (in nanosecond) used for timing measurement.static TimingInfo
TimingInfo. startTimingFullSupport()
Captures the current wall clock time (since epoch in millisecond) and the current time (in nanosecond) used for timing measurement.static TimingInfo
TimingInfo. startTimingFullSupport(long startTimeNano)
Captures the given start time in nanosecond, ignoring the wall clock time.static TimingInfo
TimingInfo. unmodifiableTimingInfo(long startEpochTimeMilli, long startTimeNano, Long endTimeNano)
Returns an instance ofTimingInfo
that is not modifiable.static TimingInfo
TimingInfo. unmodifiableTimingInfo(long startTimeNano, Long endTimeNano)
Returns an instance ofTimingInfo
that is not modifiable, given the start and end nano times.Methods in com.amazonaws.util that return types with arguments of type TimingInfo Modifier and Type Method Description List<TimingInfo>
TimingInfo. getAllSubMeasurements(String subMeasurementName)
Map<String,List<TimingInfo>>
TimingInfo. getSubMeasurementsByName()
Methods in com.amazonaws.util with parameters of type TimingInfo Modifier and Type Method Description void
TimingInfo. addSubMeasurement(String subMeasurementName, TimingInfo timingInfo)
Constructors in com.amazonaws.util with parameters of type TimingInfo Constructor Description AWSRequestMetrics(TimingInfo timingInfo)
-