I am trying the Siesta framework and I want to call a function before sending every API calls.
I saw that decorateRequests(with:)
is best suited for what I am looking to do, but as the return value must be a Request
, there's an error on the following code:
service.decorateRequests(with: { (res, req) -> Request in
if (res.url == self.tests.url) {
// do things..., then call req.repeated()
} else {
req.repeated()
}
})
However, I have this error:
Missing return in a closure expected to return 'Request'
Any idea how I can make it work? Thanks
The basic Swift syntax error here is that you need to use the
return
keyword if a value-returning closure contains more than one statement.If what you need to do is something that either:
…then it needn’t be complicated. Do your brief task while everyone waits, then return the request:
If on the other hand you need to do something that will take an indefinite amount of time while the main thread continues, and then at a later time initiate that request, then Siesta currently doesn’t support that very well. You can do it by writing a custom implementation of the
Request
protocol, but that's laborious and error prone. A better approach is coming in a future version of Siesta.