Brunet.Services.Dht.DhtDiscovery.BeginFindingTAs C# (CSharp) Method

BeginFindingTAs() public method

public BeginFindingTAs ( ) : bool
return bool
    override public bool BeginFindingTAs()
    {
      if(Interlocked.Exchange(ref _steady_state, 0) == 1) {
        FuzzyEvent fe = _fe;
        if(fe != null) {
          _fe.TryCancel();
        }
      }

      if(base.BeginFindingTAs()) {
        return true;
      }

      return false;
    }