| MultiNodeClusterSpecRoleNameComparerCompare Method |
Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other.
Namespace:
Akka.Cluster.TestKit
Assembly:
Akka.Cluster.TestKit (in Akka.Cluster.TestKit.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax public int Compare(
RoleName x,
RoleName y
)
abstract Compare :
x : RoleName *
y : RoleName -> int
override Compare :
x : RoleName *
y : RoleName -> int
Parameters
- x
- Type: Akka.Remote.TestKitRoleName
The first object to compare. - y
- Type: Akka.Remote.TestKitRoleName
The second object to compare.
Return Value
Type:
Int32A signed integer that indicates the relative values of
x and
y, as shown in the following table.Value Meaning Less than zero
x is less than
y.Zero
x equals
y.Greater than zero
x is greater than
y.
Implements
IComparerTCompare(T, T)See Also