You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mapbox-sdk/Core/mapbox-sdk-cs/Platform/IAsyncRequestFactory.cs

39 lines
1.1 KiB

6 months ago
//-----------------------------------------------------------------------
// <copyright file="IAsyncRequest.cs" company="Mapbox">
// Copyright (c) 2016 Mapbox. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
#if UNITY_EDITOR || UNITY_STANDALONE || UNITY_ANDROID || UNITY_WP_8_1 || UNITY_WSA || UNITY_WEBGL || UNITY_IOS || UNITY_PS4 || UNITY_SAMSUNGTV || UNITY_XBOXONE || UNITY_TIZEN || UNITY_TVOS
#define UNITY
#endif
namespace Mapbox.Platform {
using Mapbox.Map;
using Mapbox.Unity.Utilities;
using System;
/// <summary> A handle to an asynchronous request. </summary>
public static class IAsyncRequestFactory {
public static IAsyncRequest CreateRequest(
string url
, Action<Response> callback
, int timeout
, HttpRequestType requestType= HttpRequestType.Get
) {
#if !UNITY
if (Environment.ProcessorCount > 2) {
return new HTTPRequestThreaded(url, callback, timeout);
} else {
return new HTTPRequestNonThreaded(url, callback, timeout);
}
#else
return new Mapbox.Unity.Utilities.HTTPRequest(url, callback, timeout, requestType);
#endif
}
}
}