You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I made withSingleRequest & withPreviousRequestsAborted for request pooling in the hoodie.account pooling.
I think withSingleRequest should be the default behavior of GETs / DELETEs and withPreviousRequestsAborted the default behavior for PUTs / POSTs in hoodie.request.
That means if I call hoodie.request('GET', '/_session') several times before the first request finishes, the subsequent calls don't send another request, but simply get the promise of the first.
The text was updated successfully, but these errors were encountered:
I made
withSingleRequest
&withPreviousRequestsAborted
for request pooling in thehoodie.account
pooling.I think
withSingleRequest
should be the default behavior of GETs / DELETEs andwithPreviousRequestsAborted
the default behavior for PUTs / POSTs inhoodie.request
.That means if I call
hoodie.request('GET', '/_session')
several times before the first request finishes, the subsequent calls don't send another request, but simply get the promise of the first.The text was updated successfully, but these errors were encountered: