Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / src / data / BufferStore.js
diff --git a/src/data/BufferStore.js b/src/data/BufferStore.js
new file mode 100644 (file)
index 0000000..ad7005c
--- /dev/null
@@ -0,0 +1,15 @@
+/**
+ * @class Ext.data.BufferStore
+ * @extends Ext.data.Store
+ * @ignore
+ */
+Ext.define('Ext.data.BufferStore', {
+    extend: 'Ext.data.Store',
+    alias: 'store.buffer',
+    sortOnLoad: false,
+    filterOnLoad: false,
+    
+    constructor: function() {
+        Ext.Error.raise('The BufferStore class has been deprecated. Instead, specify the buffered config option on Ext.data.Store');
+    }
+});
\ No newline at end of file