Scalien.GetterThreadState.GetterThreadFunc C# (CSharp) Method

GetterThreadFunc() public method

public GetterThreadFunc ( Object threadContext ) : void
threadContext Object
return void
        public void GetterThreadFunc(Object threadContext)
        {
            DateTime start = DateTime.Now;
            value = Utils.HTTP.BinaryGET(url, GET_TIMEOUT);
            elapsed = DateTime.Now.Subtract(start);
            doneEvent.Set();
        }
GetterThreadState