popcorn :: LogEntry :: response_time
# Processing time in miliseconds (or null if no clock was found in request) var response_time: nullable Int is lazy do var clock = request.clock if clock == null then return null return (clock.total * 1000.0).to_i end