Sha256: 675c4c5ccfe4e76425b118e2a3719842af1cb6d2e37174716401809bf6caaa05
Contents?: true
Size: 664 Bytes
Versions: 10
Compression:
Stored size: 664 Bytes
Contents
/** * @class Ext.direct.RemotingEvent * An event that is fired when data is received from a * {@link Ext.direct.RemotingProvider}. Contains a method to the * related transaction for the direct request, see {@link #getTransaction} */ Ext.define('Ext.direct.RemotingEvent', { /* Begin Definitions */ extend: 'Ext.direct.Event', alias: 'direct.rpc', /* End Definitions */ /** * Get the transaction associated with this event. * @return {Ext.direct.Transaction} The transaction */ getTransaction: function(){ return this.transaction || Ext.direct.Manager.getTransaction(this.tid); } });
Version data entries
10 entries across 10 versions & 2 rubygems