ApplicationCache class - dart:html library (original) (raw)

ApplicationCache is accessed via Window.applicationCache.

Inheritance

Annotations

Properties

hashCodeint

The hash code for this object.

no setterinherited

onEvents

This is an ease-of-use accessor for event streams which should only be used when an explicit accessor is not available.

no setterinherited

onCachedStream<Event>

Stream of cached events handled by this ApplicationCache.

no setter

onCheckingStream<Event>

Stream of checking events handled by this ApplicationCache.

no setter

onDownloadingStream<Event>

Stream of downloading events handled by this ApplicationCache.

no setter

onErrorStream<Event>

Stream of error events handled by this ApplicationCache.

no setter

onNoUpdateStream<Event>

Stream of noupdate events handled by this ApplicationCache.

no setter

onObsoleteStream<Event>

Stream of obsolete events handled by this ApplicationCache.

no setter

onProgressStream<ProgressEvent>

Stream of progress events handled by this ApplicationCache.

no setter

onUpdateReadyStream<Event>

Stream of updateready events handled by this ApplicationCache.

no setter

runtimeTypeType

A representation of the runtime type of the object.

no setterinherited

statusint?

no setter

Methods

abort()→ void

addEventListener(String type, EventListener? listener, [bool? useCapture])→ void

inherited

dispatchEvent(Event event)→ bool

inherited

noSuchMethod(Invocation invocation)→ dynamic

Invoked when a nonexistent method or property is accessed.

inherited

removeEventListener(String type, EventListener? listener, [bool? useCapture])→ void

inherited

swapCache()→ void

toString()→ String

A string representation of this object.

inherited

update()→ void

Operators

operator ==(Object other)→ bool

The equality operator.

inherited

Static Properties

supportedbool

Checks if this type is supported on the current platform.

no setter

Constants

cachedEvent → const EventStreamProvider<Event>

Static factory designed to expose cached events to event handlers that are not necessarily instances of ApplicationCache.

CHECKING → const int

checkingEvent → const EventStreamProvider<Event>

Static factory designed to expose checking events to event handlers that are not necessarily instances of ApplicationCache.

DOWNLOADING → const int

downloadingEvent → const EventStreamProvider<Event>

Static factory designed to expose downloading events to event handlers that are not necessarily instances of ApplicationCache.

errorEvent → const EventStreamProvider<Event>

Static factory designed to expose error events to event handlers that are not necessarily instances of ApplicationCache.

IDLE → const int

noUpdateEvent → const EventStreamProvider<Event>

Static factory designed to expose noupdate events to event handlers that are not necessarily instances of ApplicationCache.

OBSOLETE → const int

obsoleteEvent → const EventStreamProvider<Event>

Static factory designed to expose obsolete events to event handlers that are not necessarily instances of ApplicationCache.

progressEvent → const EventStreamProvider<ProgressEvent>

Static factory designed to expose progress events to event handlers that are not necessarily instances of ApplicationCache.

UNCACHED → const int

UPDATEREADY → const int

updateReadyEvent → const EventStreamProvider<Event>

Static factory designed to expose updateready events to event handlers that are not necessarily instances of ApplicationCache.