Line | |
---|
1 | #region License Information |
---|
2 | /* |
---|
3 | * This file is part of SimSharp which is licensed under the MIT license. |
---|
4 | * See the LICENSE file in the project root for more information. |
---|
5 | */ |
---|
6 | #endregion |
---|
7 | |
---|
8 | using System; |
---|
9 | |
---|
10 | namespace SimSharp { |
---|
11 | public sealed class Preempted { |
---|
12 | public Process By { get; private set; } |
---|
13 | public DateTime UsageSince { get; private set; } |
---|
14 | |
---|
15 | public Preempted(Process by, DateTime usageSince) { |
---|
16 | By = by; |
---|
17 | UsageSince = usageSince; |
---|
18 | } |
---|
19 | } |
---|
20 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.