Example #1
0
        /// <inheritdoc/>
        public override int GetHashCode()
        {
            var hashCode = 2144852902;

            hashCode = hashCode * -1521134295 + MaximumQueueMessageAge.GetHashCode();
            hashCode = hashCode * -1521134295 + DeadLetterMoveFrequency.GetHashCode();
            return(hashCode);
        }
Example #2
0
 /// <inheritdoc/>
 public bool Equals(DequeueServiceConfig other)
 {
     return(other != null &&
            MaximumQueueMessageAge.Equals(other.MaximumQueueMessageAge) &&
            DeadLetterMoveFrequency.Equals(other.DeadLetterMoveFrequency));
 }