CFHost DNS Resolution - When is it OK to use synchronous API?

Posted by Jasarien on Stack Overflow See other posts from Stack Overflow or by Jasarien
Published on 2010-02-15T11:05:42Z Indexed on 2010/03/14 16:25 UTC
Read the original article Hit count: 386

Filed under:
|
|
|
|

I went to the iPhone Developer Tech Talk a few months ago and asked one of the gurus there about the lack of NSHost on the iPhone. Some code I was porting to the iPhone made significant use of NSHost throughout its networking code.

I was told that NSHost is on the iPhone, but its private. I was also told that NSHost is a synchronous API and that I shouldn't use it anyway. (If anyone could elaborate on why it shouldn't be used, as a bonus, that'd be great.)

I can see the caveats of using synchronous API's on the main thread in that they'll block until complete - and that's never a good thing with network code because there are so many factors that could cause the API to block the thread for a significant amount of time.

My solution was to write a wrapper around CFHost's asynchronous resolution functions.

The result works quite well, and I'm considering releasing it into the public domain.

But my question is this: Say my app only resolves a hostname once per run, during the connecting phase, and then cache's it for the rest of the session. During the time it is resolving, a modal screen is shown telling the user "Connecting" with a nice spinner.

Does it really matter whether or not the resolution is asynchronous?? The user has to wait to connect anyway, and the resolution is only done on the first connection. Subsequent connections use the cached result of the resolution.

When is it OK to be synchronous and when should things be asynchronous?

© Stack Overflow or respective owner

Related posts about cfhost

Related posts about iphone