Skip to content

Commit 945d08c

Browse files
committed
init
1 parent 165c34a commit 945d08c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+4536
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.vs
2+
obj
3+
bin
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// Copyright (c) Microsoft. All rights reserved.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3+
4+
namespace WheelTimer.Concurrency
5+
{
6+
public interface IRunnable
7+
{
8+
void Run();
9+
}
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// Copyright (c) Microsoft. All rights reserved.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3+
4+
namespace WheelTimer.Concurrency
5+
{
6+
using System;
7+
8+
public class RejectedExecutionException : Exception
9+
{
10+
public RejectedExecutionException()
11+
{
12+
}
13+
14+
public RejectedExecutionException(string message)
15+
: base(message)
16+
{
17+
}
18+
}
19+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
// Copyright (c) Microsoft. All rights reserved.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3+
4+
namespace WheelTimer.Concurrency
5+
{
6+
using System.Threading.Tasks;
7+
8+
public sealed class TaskCompletionSource : TaskCompletionSource<int>
9+
{
10+
public static readonly TaskCompletionSource Void = CreateVoidTcs();
11+
12+
public TaskCompletionSource(object state)
13+
: base(state)
14+
{
15+
}
16+
17+
public TaskCompletionSource()
18+
{
19+
}
20+
21+
public bool TryComplete() => TrySetResult(0);
22+
23+
public void Complete() => SetResult(0);
24+
25+
// todo: support cancellation token where used
26+
public bool SetUncancellable() => true;
27+
28+
public override string ToString() => "TaskCompletionSource[status: " + Task.Status.ToString() + "]";
29+
30+
static TaskCompletionSource CreateVoidTcs()
31+
{
32+
var tcs = new TaskCompletionSource();
33+
tcs.TryComplete();
34+
return tcs;
35+
}
36+
}
37+
}

0 commit comments

Comments
 (0)