Example #1
0
 internal WorkItem(WorkQueue owner, Delegate work, object[] args, string tag)
 {
     _owner = owner;
     _work = work;
     _args = args;
     _tag = tag;
 }
Example #2
0
 internal WorkItem(WorkQueue owner, Delegate work, object[] args)
     : this(owner, work, args, null)
 {
 }
Example #3
0
 internal WorkItem(WorkQueue owner, Delegate work, object[] args)
     : this(owner, work, args, null)
 { }