Akka.Remote.DeadlineFailureDetector.IsAvailableTicks C# (CSharp) Method

IsAvailableTicks() private method

private IsAvailableTicks ( long timestamp ) : bool
timestamp long
return bool
        private bool IsAvailableTicks(long timestamp)
        {
            if (_active) return (Interlocked.Read(ref _heartbeatTimestamp) + _acceptableHeartbeatMillis) > timestamp;
            return true; //treat unmanaged connections, e.g. with zero heartbeats, as healthy connections
        }
    }