Re: NSURLConnection question

2008-10-11 Thread Roland King
I don't think it actually does send it as fast as it can, I've been using it for some of my stuff and I typically get one data callback only with the whole document in it. I just checked the thing I'm working on again and it got about 15K in one shot, that was everything. I don't see any wa

Re: NSURLConnection question

2008-10-11 Thread Michael Ash
On Sat, Oct 11, 2008 at 7:07 PM, John Zorko <[EMAIL PROTECTED]> wrote: > > Hello, all ... > > I want to alter how often NSURLConnection calls receivedData -- or rather, I > want it to call it more often (even with fewer bytes) vs less often (with > loads and loads of bytes). Can I do this with NSU

NSURLConnection question

2008-10-11 Thread John Zorko
Hello, all ... I want to alter how often NSURLConnection calls receivedData -- or rather, I want it to call it more often (even with fewer bytes) vs less often (with loads and loads of bytes). Can I do this with NSURLConnection or some other CF class, rather than have to go down to POSI