]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/javascript/yui3/build/datasource/datasource-polling.js
Release 6.2.2
[Github/sugarcrm.git] / include / javascript / yui3 / build / datasource / datasource-polling.js
1 /*
2  Copyright (c) 2010, Yahoo! Inc. All rights reserved.
3  Code licensed under the BSD License:
4  http://developer.yahoo.com/yui/license.html
5  version: 3.3.0
6  build: 3167
7  */
8 YUI.add('datasource-polling',function(Y){function Pollable(){this._intervals={};}
9 Pollable.prototype={_intervals:null,setInterval:function(msec,callback){var x=Y.later(msec,this,this.sendRequest,[callback],true);this._intervals[x.id]=x;return x.id;},clearInterval:function(id,key){id=key||id;if(this._intervals[id]){this._intervals[id].cancel();delete this._intervals[id];}},clearAllIntervals:function(){Y.each(this._intervals,this.clearInterval,this);}};Y.augment(Y.DataSource.Local,Pollable);},'3.3.0',{requires:['datasource-local']});