$httpProvider.useApplyAsync()

useApplyAsync([value]);

Configure $http service to combine processing of multiple http responses received at around the same time via $rootScope.$applyAsync. This can result in significant performance improvement for bigger applications that make many HTTP requests concurrently (common during application bootstrap).

Defaults to false. If no value is specified, returns the current configured value.

Parameters

Param Type Details
value
(optional)
boolean

If true, when requests are loaded, they will schedule a deferred "apply" on the next tick, giving time for subsequent requests in a roughly ~10ms window to load and share the same digest cycle.

Returns

booleanObject

If a value is specified, returns the $httpProvider for chaining. otherwise, returns the current configured value.

doc_AngularJS
2016-03-29 16:10:25
Comments
Leave a Comment

Please login to continue.