Esempio n. 1
0
        /// <summary>
        /// Returns true if OrgApacheSlingHcCoreImplExecutorHealthCheckExecutorImplProperties instances are equal
        /// </summary>
        /// <param name="other">Instance of OrgApacheSlingHcCoreImplExecutorHealthCheckExecutorImplProperties to be compared</param>
        /// <returns>Boolean</returns>
        public bool Equals(OrgApacheSlingHcCoreImplExecutorHealthCheckExecutorImplProperties other)
        {
            if (other is null)
            {
                return(false);
            }
            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return
                ((
                     TimeoutInMs == other.TimeoutInMs ||
                     TimeoutInMs != null &&
                     TimeoutInMs.Equals(other.TimeoutInMs)
                     ) &&
                 (
                     LongRunningFutureThresholdForCriticalMs == other.LongRunningFutureThresholdForCriticalMs ||
                     LongRunningFutureThresholdForCriticalMs != null &&
                     LongRunningFutureThresholdForCriticalMs.Equals(other.LongRunningFutureThresholdForCriticalMs)
                 ) &&
                 (
                     ResultCacheTtlInMs == other.ResultCacheTtlInMs ||
                     ResultCacheTtlInMs != null &&
                     ResultCacheTtlInMs.Equals(other.ResultCacheTtlInMs)
                 ));
        }