Exemplo n.º 1
0
            public void Clear()
            {
                JobState = ReadJobState.UnLoaded;
                Length   = 0;
                Read     = 0;
                RefCount = 0;

                ParserID = -1;

                DelayReadAsync = -1;
                DelayParseText = -1;
                DelayPostProc  = -1;
            }
 public ReadState(ReadJobState job_state, int len, int read, int ref_count,
                  float delay_read_async,
                  float delay_parse_text,
                  float delay_post_proc)
 {
     JobState       = job_state;
     Length         = len;
     Read           = read;
     RefCount       = ref_count;
     DelayReadAsync = delay_read_async;
     DelayParseText = delay_parse_text;
     DelayPostProc  = delay_post_proc;
 }