Brunet.Symphony.StructuredShortcutConnectionOverlord.CreateBypassCallback C# (CSharp) Метод

CreateBypassCallback() защищенный Метод

protected CreateBypassCallback ( Address start, SortedList score_table, Address current ) : void
start Address
score_table System.Collections.SortedList
current Address
Результат void
    protected void CreateBypassCallback(Address start, SortedList score_table, Address current) {
      if (score_table.Count > 0) {
        Address min_target = (Address) score_table.GetByIndex(0);
#if TRACE
        if (ProtocolLog.SCO.Enabled) {
          ProtocolLog.Write(ProtocolLog.SCO, 
                            String.Format("SCO local: {0}, Connecting (bypass) to min_target: {1}", 
                                          _node.Address, min_target));
        }
#endif
        ConnectTo(min_target, STRUC_BYPASS);
      }
    }