本文整理匯總了C#中System.Objects.FindPeers方法的典型用法代碼示例。如果您正苦於以下問題:C# Objects.FindPeers方法的具體用法?C# Objects.FindPeers怎麽用?C# Objects.FindPeers使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Objects
的用法示例。
在下文中一共展示了Objects.FindPeers方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: CheckMinNumberOfUploaderPeers
/// <summary>
/// Control if there is the minimum number of uploader peers else get other uploader peers.
/// </summary>
/// <param name="download">The download object.</param>
/// <returns>Return true if there is the minimum number of the uploader peers else return false.</returns>
private static bool CheckMinNumberOfUploaderPeers(Objects.Download download)
{
if(download.ListUploaderPeers.Count < NumPeersForEachDownloads)
{
System.Random random = new Random();
while(download.ListUploaderPeers.Count < NumPeersForEachDownloads)
{
// control if there are peers that have this file
if (download.ListPeers.Count == 0)
{
download.FindPeers();
}
if (download.ListPeers.Count > download.ListUploaderPeers.Count)
{
// get a casual peer
Objects.Peer peer = download.ListPeers[random.Next(download.ListPeers.Count)];
// control if the peer is already an uploader
if (download.SearchUploaderPeer(peer.Key) == null)
{
// add the peer in the list of the uploader peers of the download
download.AddUploaderPeer(peer);
// send a FPR message to the new uploader peer
if (StartDownloadNextFilePart(download, peer) == false)
{
DownloadFirstNotDownloadedFilePack(download, peer);
}
}
}
else
{
return false;
}
}
return true;
}
else
{
return true;
}
}
示例2: AddDownload
/// <summary>
/// Adds a download object.
/// </summary>
/// <param name="download">The download object.</param>
public static void AddDownload(Objects.Download download)
{
download.Active = true;
download.FindPeers();
if (List.Count > 0)
{
int n = 0;
int max = List.Count - 1;
int min = 0;
int compare = 0;
while (max >= min)
{
n = (max + min) / 2;
compare = download.SHA1.CompareTo(List[n].SHA1);
if (compare > 0)
{
min = n + 1;
}
else if (compare < 0)
{
max = n - 1;
}
else
{
return;
}
}
if (compare < 0)
{
n--;
}
List.Add(List[List.Count - 1]);
for(int i = List.Count - 1; i > n + 1; i--)
{
List[i] = List[i - 1];
}
List[n + 1] = download;
}
else
{
List.Add(download);
}
NewOrUpdatedDownload = true;
}