Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [ecf-dev] Async-Methods

On 11/23/2010 02:49 PM, Eugen Reiswich wrote:
> Hi Markus, 
> 
> taking the example below: say I have 10000 Kunden-objects which I need
> to read from e.g. a database. This might take a while therefore I would
> like to use an async-method to avoid time out exceptions. But in
> addition to that I would like to send say each 100 found Kunden-objects
> a progress update to the client so he knows something is happening on
> the server side. The example below will only inform when the job is done
> without any steps in between, right? 

If you want real progress you will have to use a provider that supports
call by reference and pass in a callback to the remote instance. You
might wanna reread Scott's message on this topic/thread.

Markus


Back to the top