Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / src / direct / Transaction.js
index bc4208e..b2f667a 100644 (file)
@@ -1,32 +1,56 @@
-/*!
- * Ext JS Library 3.1.1
- * Copyright(c) 2006-2010 Ext JS, LLC
- * licensing@extjs.com
- * http://www.extjs.com/license
+/*
+
+This file is part of Ext JS 4
+
+Copyright (c) 2011 Sencha Inc
+
+Contact:  http://www.sencha.com/contact
+
+GNU General Public License Usage
+This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file.  Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html.
+
+If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact.
+
+*/
+/**
+ * Supporting Class for Ext.Direct (not intended to be used directly).
  */
-/**\r
- * @class Ext.Direct.Transaction\r
- * @extends Object\r
- * <p>Supporting Class for Ext.Direct (not intended to be used directly).</p>\r
- * @constructor\r
- * @param {Object} config\r
- */\r
-Ext.Direct.Transaction = function(config){\r
-    Ext.apply(this, config);\r
-    this.tid = ++Ext.Direct.TID;\r
-    this.retryCount = 0;\r
-};\r
-Ext.Direct.Transaction.prototype = {\r
-    send: function(){\r
-        this.provider.queueTransaction(this);\r
-    },\r
-\r
-    retry: function(){\r
-        this.retryCount++;\r
-        this.send();\r
-    },\r
-\r
-    getProvider: function(){\r
-        return this.provider;\r
-    }\r
-};
\ No newline at end of file
+Ext.define('Ext.direct.Transaction', {
+    
+    /* Begin Definitions */
+   
+    alias: 'direct.transaction',
+    alternateClassName: 'Ext.Direct.Transaction',
+   
+    statics: {
+        TRANSACTION_ID: 0
+    },
+   
+    /* End Definitions */
+
+    /**
+     * Creates new Transaction.
+     * @param {Object} [config] Config object.
+     */
+    constructor: function(config){
+        var me = this;
+        
+        Ext.apply(me, config);
+        me.id = ++me.self.TRANSACTION_ID;
+        me.retryCount = 0;
+    },
+   
+    send: function(){
+         this.provider.queueTransaction(this);
+    },
+
+    retry: function(){
+        this.retryCount++;
+        this.send();
+    },
+
+    getProvider: function(){
+        return this.provider;
+    }
+});
+