소스 검색

Adding IClock.

Bart De Smet 8 년 전
부모
커밋
cac31d40e9
1개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. 11 0
      AsyncRx.NET/System.Reactive.Async/System/Reactive/Concurrency/IClock.cs

+ 11 - 0
AsyncRx.NET/System.Reactive.Async/System/Reactive/Concurrency/IClock.cs

@@ -0,0 +1,11 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the Apache 2.0 License.
+// See the LICENSE file in the project root for more information. 
+
+namespace System.Reactive.Concurrency
+{
+    public interface IClock
+    {
+        DateTimeOffset Now { get; }
+    }
+}