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
This used to be "deferred creation support" because that's where this problem originally showed up. In reality, it's a deeper problem: we don't have an abstracted store interface.
Right now, it is assumed that creation can be done synchronously: it happens right now, or it doesn't happen at all. In the first case, it returns 201 Created. It's possible that resource creation actually takes a while (ie returns a Deferred from the API ;-)), in which case it should say 202 Accepted.
The asynchronous store interface really just becomes most of the methods currently on ICollection.
The text was updated successfully, but these errors were encountered:
This used to be "deferred creation support" because that's where this problem originally showed up. In reality, it's a deeper problem: we don't have an abstracted store interface.
Right now, it is assumed that creation can be done synchronously: it happens right now, or it doesn't happen at all. In the first case, it returns 201 Created. It's possible that resource creation actually takes a while (ie returns a Deferred from the API ;-)), in which case it should say 202 Accepted.
The asynchronous store interface really just becomes most of the methods currently on
ICollection
.The text was updated successfully, but these errors were encountered: