Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IStopwatch.cs « Concurrency « Reactive « System.Reactive.Interfaces « Rx.NET - github.com/mono/rx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1b482aba1820559afb3d56f6baf664dc1de94f42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.

using System;

namespace System.Reactive.Concurrency
{
    /// <summary>
    /// Abstraction for a stopwatch to compute time relative to a starting point.
    /// </summary>
    public interface IStopwatch
    {
        /// <summary>
        /// Gets the time elapsed since the stopwatch object was obtained.
        /// </summary>
        TimeSpan Elapsed { get; }
    }
}