Example #1
0
 public bool Equals(TaskExecutionResult other)
 {
     return(other != null &&
            mResultInfo.Equals(other.mResultInfo) &&
            mRetryAt == other.mRetryAt &&
            mProcessingTimeMilliseconds == other.mProcessingTimeMilliseconds);
 }