1 // Copyright 2001-2019 Crytek GmbH / Crytek Group. All rights reserved.
4 using System
.Collections
.Generic
;
6 using System
.Threading
;
8 namespace Aga
.Controls
.Threading
10 public sealed class WorkItem
12 private WaitCallback _callback
;
13 private object _state
;
14 private ExecutionContext _ctx
;
16 internal WorkItem(WaitCallback wc
, object state
, ExecutionContext ctx
)
23 internal WaitCallback Callback
39 internal ExecutionContext Context