blob: 8afc9f2eeee603487264c26a643afcb5fd9d7a31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
using System;
using System.Collections.Generic;
namespace Tango.Scripting.Editors.Utils
{
/// <summary>
/// Maintains a list of delayed events to raise.
/// </summary>
sealed class DelayedEvents
{
struct EventCall
{
EventHandler handler;
object sender;
EventArgs e;
public EventCall(EventHandler handler, object sender, EventArgs e)
{
this.handler = handler;
this.sender = sender;
this.e = e;
}
public void Call()
{
handler(sender, e);
}
}
Queue<EventCall> eventCalls = new Queue<EventCall>();
public void DelayedRaise(EventHandler handler, object sender, EventArgs e)
{
if (handler != null) {
eventCalls.Enqueue(new EventCall(handler, sender, e));
}
}
public void RaiseEvents()
{
while (eventCalls.Count > 0)
eventCalls.Dequeue().Call();
}
}
}
|