telemetry.timeline.async_slice
index
telemetry/timeline/async_slice.py

# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

 
Modules
       
telemetry.timeline.event

 
Classes
       
telemetry.timeline.event.TimelineEvent(__builtin__.object)
AsyncSlice

 
class AsyncSlice(telemetry.timeline.event.TimelineEvent)
    An AsyncSlice represents an interval of time during which an
asynchronous operation is in progress. An AsyncSlice consumes no CPU time
itself and so is only associated with Threads at its start and end point.
 
 
Method resolution order:
AsyncSlice
telemetry.timeline.event.TimelineEvent
__builtin__.object

Methods defined here:
AddSubSlice(self, sub_slice)
IterEventsInThisContainerRecrusively(self)
__init__(self, category, name, timestamp, args=None, duration=0, start_thread=None, end_thread=None, thread_start=None, thread_duration=None)

Methods inherited from telemetry.timeline.event.TimelineEvent:
__repr__(self)

Data descriptors inherited from telemetry.timeline.event.TimelineEvent:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)
end
has_thread_timestamps
thread_end
Thread-specific CPU time when this event ended.
 
May be None if the trace event didn't have thread time data.