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
different HTTP methods are going to have different needs from their response handlers; it should be easy to select a separate response handler to use, so that the same call method doesn't have to handle both DELETE and GET responses.
The text was updated successfully, but these errors were encountered:
@solnic I don't think this is needed, I had a similar case when developing a PoC a few years back and just handed off to another class based on the verb in my adapters request/response handlers, this also allows you to do any processing that is common to all requests before handing off to dependencies.
different HTTP methods are going to have different needs from their response handlers; it should be easy to select a separate response handler to use, so that the same
call
method doesn't have to handle bothDELETE
andGET
responses.The text was updated successfully, but these errors were encountered: