blob: c8df073dd0bc294af64ab8c40ce20ae9a6283294 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
// **********************************************************************
//
// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
namespace IceInternal
{
using System.Collections.Generic;
public class RetryTask : TimerTask
{
public RetryTask(RetryQueue retryQueue, OutgoingAsync outAsync)
{
_retryQueue = retryQueue;
_outAsync = outAsync;
}
public void runTimerTask()
{
if(_retryQueue.remove(this))
{
try
{
_outAsync.send__();
}
catch(Ice.LocalException ex)
{
_outAsync.releaseCallback__(ex);
}
}
}
public void destroy()
{
_outAsync.releaseCallback__(new Ice.CommunicatorDestroyedException());
}
private RetryQueue _retryQueue;
private OutgoingAsync _outAsync;
};
public class RetryQueue
{
public RetryQueue(Instance instance)
{
_instance = instance;
}
public void add(OutgoingAsync outAsync, int interval)
{
lock(this)
{
RetryTask task = new RetryTask(this, outAsync);
_instance.timer().schedule(task, interval);
_requests.Add(task, null);
}
}
public void
destroy()
{
lock(this)
{
foreach(RetryTask task in _requests.Keys)
{
_instance.timer().cancel(task);
task.destroy();
}
_requests.Clear();
}
}
public bool
remove(RetryTask task)
{
lock(this)
{
return _requests.Remove(task);
}
}
private Instance _instance;
private Dictionary<RetryTask, object> _requests = new Dictionary<RetryTask, object>();
}
}
|