xmlhttpfactory.js 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. // Copyright 2010 The Closure Library Authors. All Rights Reserved.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS-IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. /**
  15. * @fileoverview Interface for a factory for creating XMLHttpRequest objects
  16. * and metadata about them.
  17. * @author dbk@google.com (David Barrett-Kahn)
  18. */
  19. goog.provide('goog.net.XmlHttpFactory');
  20. /** @suppress {extraRequire} Typedef. */
  21. goog.require('goog.net.XhrLike');
  22. /**
  23. * Abstract base class for an XmlHttpRequest factory.
  24. * @constructor
  25. */
  26. goog.net.XmlHttpFactory = function() {};
  27. /**
  28. * Cache of options - we only actually call internalGetOptions once.
  29. * @type {Object}
  30. * @private
  31. */
  32. goog.net.XmlHttpFactory.prototype.cachedOptions_ = null;
  33. /**
  34. * @return {!goog.net.XhrLike.OrNative} A new XhrLike instance.
  35. */
  36. goog.net.XmlHttpFactory.prototype.createInstance = goog.abstractMethod;
  37. /**
  38. * @return {Object} Options describing how xhr objects obtained from this
  39. * factory should be used.
  40. */
  41. goog.net.XmlHttpFactory.prototype.getOptions = function() {
  42. return this.cachedOptions_ ||
  43. (this.cachedOptions_ = this.internalGetOptions());
  44. };
  45. /**
  46. * Override this method in subclasses to preserve the caching offered by
  47. * getOptions().
  48. * @return {Object} Options describing how xhr objects obtained from this
  49. * factory should be used.
  50. * @protected
  51. */
  52. goog.net.XmlHttpFactory.prototype.internalGetOptions = goog.abstractMethod;