-<html>
-<head>
- <title>The source code</title>
- <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
- <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
-</head>
-<body onload="prettyPrint();">
- <pre class="prettyprint lang-js">/*!
- * Ext JS Library 3.0.3
- * Copyright(c) 2006-2009 Ext JS, LLC
- * licensing@extjs.com
- * http://www.extjs.com/license
+<!DOCTYPE html><html><head><title>Sencha Documentation Project</title><link rel="stylesheet" href="../reset.css" type="text/css"><link rel="stylesheet" href="../prettify.css" type="text/css"><link rel="stylesheet" href="../prettify_sa.css" type="text/css"><script type="text/javascript" src="../prettify.js"></script></head><body onload="prettyPrint()"><pre class="prettyprint"><pre><span id='Ext-direct.Transaction-method-constructor'><span id='Ext-direct.Transaction'>/**
+</span></span> * @class Ext.direct.Transaction
+ * @extends Object
+ * <p>Supporting Class for Ext.Direct (not intended to be used directly).</p>
+ * @constructor
+ * @param {Object} config
*/
-<div id="cls-Ext.Direct.Transaction"></div>/**\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
-};</pre>
-</body>
-</html>
\ 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 */
+
+ 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;
+ }
+});
+</pre></pre></body></html>
\ No newline at end of file