On 30 Okt, 19:47, Manish Pandit <pandit.man...@gmail.com> wrote:
> On Oct 30, 11:18 am, mike <mikaelpetter...@hotmail.com> wrote:
>
> > Ok!
>
> > I am calling the interface as my task, operationDel, makes progress or
> > isCanceled.
> > Shall the class where I have my call:
>
> > myApp.operationDel( file, operationListener);
>
> > implement the interface. Seems like I cannot figure out how the
> > callback is working!
> > Or am I missing something here?
>
> Either the caller, or any other class can implement this interface.
> Whoever implements it needs to be passed to the method call. The
> interface methods wil be called by the method call at various points,
> and the implementation will receive these callbacks (it is also called
> a hook), and can use that to perform any operation. For now, you can
> log a message or do a System.out.println() to understand the flow and
> the callback mechanism, later you can tie it to more complex solution,
> like rendering a progressbar or something similar.
>
> -cheers,
> Manish
Thanks Manish,
I get it now