Posted By:
Pratheep_Tharmalingam
Posted On:
Thursday, December 8, 2011 12:44 PM
some more information
this is where the set up is being done. but the syncIndex is not being called and not sure why...and could it be a problem...
protected static TimerCallback _timerDelegate = SyncIndex;
protected static Timer _syncTimer = new Timer(_timerDelegate, null, TimeSpan.FromMilliseconds(-1), TimeSpan.FromMinutes(_updateInterval));
protected static bool running = false;
public static void SyncIndex(Object stateInfo)
{
new SearchService().UpdateIndex();
}