System.Drawing: added email to icon and test file headers
[mono.git] / mcs / class / System.Threading.Tasks.Dataflow / System.Threading.Tasks.Dataflow / DataflowMessageHeader.cs
1 // DataflowMessageHeader.cs
2 //
3 // Copyright (c) 2011 Jérémie "garuma" Laval
4 //
5 // Permission is hereby granted, free of charge, to any person obtaining a copy
6 // of this software and associated documentation files (the "Software"), to deal
7 // in the Software without restriction, including without limitation the rights
8 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 // copies of the Software, and to permit persons to whom the Software is
10 // furnished to do so, subject to the following conditions:
11 //
12 // The above copyright notice and this permission notice shall be included in
13 // all copies or substantial portions of the Software.
14 //
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 // THE SOFTWARE.
22 //
23 //
24
25
26 using System;
27 using System.Threading.Tasks;
28
29 namespace System.Threading.Tasks.Dataflow
30 {
31         public struct DataflowMessageHeader : IEquatable<DataflowMessageHeader>
32         {
33                 long id;
34
35                 public DataflowMessageHeader (long id)
36                 {
37                         this.id = id;
38                 }
39
40                 public long Id {
41                         get {
42                                 return id;
43                         }
44                 }
45
46                 public bool IsValid {
47                         get {
48                                 // Check that id isn't zero (as it would be with an empty struct ctor)
49                                 return id > 0;
50                         }
51                 }
52
53                 internal DataflowMessageHeader Increment ()
54                 {
55                         return new DataflowMessageHeader (Interlocked.Increment (ref id));
56                 }
57
58                 internal static DataflowMessageHeader NewValid ()
59                 {
60                         return new DataflowMessageHeader (1);
61                 }
62
63                 public override bool Equals (object obj)
64                 {
65                         return obj is DataflowMessageHeader ? Equals ((DataflowMessageHeader)obj) : false;
66                 }
67
68                 public bool Equals (DataflowMessageHeader other)
69                 {
70                         return other.id == id;
71                 }
72
73                 public override int GetHashCode ()
74                 {
75                         return id.GetHashCode ();
76                 }
77
78                 public static bool operator== (DataflowMessageHeader left, DataflowMessageHeader right)
79                 {
80                         return left.Equals (right);
81                 }
82
83                 public static bool operator!= (DataflowMessageHeader left, DataflowMessageHeader right)
84                 {
85                         return !left.Equals (right);
86                 }
87         }
88 }
89