pascalabcnet/InstallerSamples/NETLibraries/System.Parallel/Parallel1.pas

8 lines
277 B
ObjectPascal
Raw Normal View History

2017-12-17 14:40:06 +03:00
Uses System,System.Net,System.Threading.Tasks;
2015-05-14 22:35:07 +03:00
begin
Parallel.Invoke (
procedure -> begin (new WebClient()).DownloadFile ('http://yandex.ru', 'yandex.html') end,
procedure -> begin (new WebClient()).DownloadFile ('http://pascalabc.net', 'pabc.html') end
);
end.