[Quantproject-developers] QuantDownloader/Downloader/OpenTickDownloader/OTManagement OTManager.cs,
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2009-01-29 19:45:18
|
Update of /cvsroot/quantproject/QuantDownloader/Downloader/OpenTickDownloader/OTManagement In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv9244/OpenTickDownloader/OTManagement Modified Files: OTManager.cs Log Message: code changed because the class BarRequest has 4 parameters now (it had 3 in the previous revision) Index: OTManager.cs =================================================================== RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/OpenTickDownloader/OTManagement/OTManager.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** OTManager.cs 11 Jan 2009 20:38:14 -0000 1.4 --- OTManager.cs 29 Jan 2009 19:45:12 -0000 1.5 *************** *** 152,156 **** this.onOTClientError_logMessage( error ); if ( this.OnError != null ) ! this.OnError( error ); } #endregion onOTClientError_actually --- 152,156 ---- this.onOTClientError_logMessage( error ); if ( this.OnError != null ) ! this.OnError( error ); } #endregion onOTClientError_actually *************** *** 214,218 **** { this.onMessageEventHandler_logMessage( oTMessage ); ! this.onMessageEventHandler_riseOnEndOfDataIfTheCase( oTMessage ); } #endregion onMessageEventHandler_actually --- 214,218 ---- { this.onMessageEventHandler_logMessage( oTMessage ); ! this.onMessageEventHandler_riseOnEndOfDataIfTheCase( oTMessage ); } #endregion onMessageEventHandler_actually *************** *** 328,332 **** DownloaderConstants.MAX_NUMBER_OF_PENDING_REQUESTS_FOR_A_SINGLE_OTMANAGER ); } ! return areThereTooMany; } --- 328,332 ---- DownloaderConstants.MAX_NUMBER_OF_PENDING_REQUESTS_FOR_A_SINGLE_OTMANAGER ); } ! return areThereTooMany; } *************** *** 360,364 **** exchange , symbol , ! startingDateInUTC ); lock ( this.pendingBarRequests ) { --- 360,365 ---- exchange , symbol , ! startingDateInUTC , ! intervalValue ); lock ( this.pendingBarRequests ) { *************** *** 404,414 **** // Thread.Sleep( 10 ); int requestId = ! this.requestHistDataWithoutTooManyPendentBarRequests( ! exchange , ! symbol , ! startingDateInUTC , ! endingDateInUTC , ! oTHistoricalType , ! intervalValue ); return requestId; } --- 405,415 ---- // Thread.Sleep( 10 ); int requestId = ! this.requestHistDataWithoutTooManyPendentBarRequests( ! exchange , ! symbol , ! startingDateInUTC , ! endingDateInUTC , ! oTHistoricalType , ! intervalValue ); return requestId; } |