/web_js/oclosure/google-closure/closure/goog/net/xmlhttpfactory.js

http://github.com/aryx/fork-ocsigen · JavaScript · 64 lines · 10 code · 13 blank · 41 comment · 0 complexity · 9fcf54b3e17afe0b1c392e37b329f130 MD5 · raw file

  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. /**
  21. * Abstract base class for an XmlHttpRequest factory.
  22. * @constructor
  23. */
  24. goog.net.XmlHttpFactory = function() {
  25. };
  26. /**
  27. * Cache of options - we only actually call internalGetOptions once.
  28. * @type {Object}
  29. * @private
  30. */
  31. goog.net.XmlHttpFactory.prototype.cachedOptions_ = null;
  32. /**
  33. * @return {!(XMLHttpRequest|GearsHttpRequest)} A new XMLHttpRequest instance.
  34. */
  35. goog.net.XmlHttpFactory.prototype.createInstance = goog.abstractMethod;
  36. /**
  37. * @return {Object} Options describing how xhr objects obtained from this
  38. * factory should be used.
  39. */
  40. goog.net.XmlHttpFactory.prototype.getOptions = function() {
  41. return this.cachedOptions_ ||
  42. (this.cachedOptions_ = this.internalGetOptions());
  43. };
  44. /**
  45. * Override this method in subclasses to preserve the caching offered by
  46. * getOptions().
  47. * @return {Object} Options describing how xhr objects obtained from this
  48. * factory should be used.
  49. * @protected
  50. */
  51. goog.net.XmlHttpFactory.prototype.internalGetOptions = goog.abstractMethod;