Home

Class goog.net.BulkLoaderHelper

Helper class used to load multiple URIs.

extends goog.Disposable
Instance Method Summary
disposeInternal()

Deletes or nulls out any references to COM objects, DOM nodes, or other disposable objects. Classes that extend {@code goog.Disposable} should override this method. Not reentrant. To avoid calling it twice, it must only be called from the subclass' {@code disposeInternal} method. Everywhere else the public {@code dispose} method must be used. For example:

mypackage.MyClass = function() {
goog.base(this);
// Constructor logic specific to MyClass.
...
};
goog.inherits(mypackage.MyClass, goog.Disposable);

mypackage.MyClass.prototype.disposeInternal = function() {
goog.base(this, 'disposeInternal');
// Dispose logic specific to MyClass.
...
};

getResponseTexts() ⇒ ?Array

Gets the response texts.

getUri(number id) ⇒ (goog.Uri|null|string)

Gets the URI by id.

getUris() ⇒ ?Array

Gets the URIs.

isLoadComplete() ⇒ boolean

Determines if the load of the URIs is complete.

setResponseText(number id, string responseText)

Sets the response text by id.