The goog.net.BrowserChannel.TimingEvent Class

goog.net.BrowserChannel.TimingEvent
> goog.events.Event

goog.net.BrowserChannel.TimingEvent(target, size, rtt, retries)

Event class for goog.net.BrowserChannel.Event.TIMING_EVENT

target {goog.events.EventTarget}
The stat event target for the browser channel.
size {number}
The number of characters in the POST data.
rtt {number}
The total round trip time from POST to response in MS.
retries {number}
The number of times the POST had to be retried.

.defaultPrevented {boolean}

Inherited from goog.events.Event .

Whether the default action has been prevented. This is a property to match the W3C specification at {@link http://www.w3.org/TR/DOM-Level-3-Events/#events-event-type-defaultPrevented}. Must be treated as read-only outside the class.

.preventDefault()

Inherited from goog.events.Event .

Prevents the default action, for example a link redirecting to a url.

.propagationStopped_ {boolean}

Inherited from goog.events.Event .

Whether to cancel the event in internal capture/bubble processing for IE.

@suppress
{underscore} Technically public, but referencing this outside this package is strongly discouraged.

.retries {number}

.returnValue_ {boolean}

Inherited from goog.events.Event .

Return value for in internal capture/bubble processing for IE.

@suppress
{underscore} Technically public, but referencing this outside this package is strongly discouraged.

.rtt {number}

.size {number}

.stopPropagation()

Inherited from goog.events.Event .

Stops event propagation.