Paul Cantrell

Results 55 comments of Paul Cantrell

Hi Alexis. I don't have an example like that. You might want to investigate whether [request decorators](http://bustoutsolutions.github.io/siesta/api/Structs/Configuration.html#/s:6Siesta13ConfigurationV16decorateRequests4withyAA7Request_pAA8ResourceC_AaF_ptc_tF) and [chained requests](http://bustoutsolutions.github.io/siesta/api/Protocols/Request.html#/s:6Siesta7RequestPAAE7chained13whenCompletedAaB_pAA0B11ChainActionOAA12ResponseInfoVc_tF) might help you.

Calling `addObserver` should send `observerAdded` regardless of whether you call `loadIfNeeded`, or whether it actually triggers a load. Is this with the very latest Siesta release? Could you point at...

Good question. This had never even occurred to me! I'd always imagined Siesta operating within apps. The real constraint is not that all operations happen on the _main_ thread specifically,...

There are many compelling reasons for this feature or something like it: automatic retry after reestablishing a lost connection, for example, or automatically polling resources while they’re in use. It’s...

> I've been looking at ways to cache some images in a way so that volatile views (observers) are likely, but not required, to find the image locally. This happens...

The “Cannot parse server response” error means that something in the transformer pipeline returned an error. If you look in the logs, there should be an accompanying underlying error. (You...

You need to look up above that in the log, where the transformer pipeline is being applied to the response. If you enable logging for `configuration`, `network`, and `pipeline` (the...

> Is it possible to configure "heavy" resources (ie, RemoteImageView) to only try the network if there is nothing in cache? Yes, configuring `expirationTime` to a large value should give...

As of Siesta 1.0b8 + Xcode 7.3.1, the simple subclass workaround above no longer works. It is possible to create a project-local subclass in Objective-C that works. However, Siesta should...

Currently all extension methods appear after all methods from the base type, but there's no deterministic sorting beyond that. I like the idea of being able to order extension, but...