Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[ecf-dev] async remote services again

Hi,

does it really work with every distribution provider (implemented in ECF 3.4)?

What is the generic type for a callback of a method with void return type?

helloAsyncService.helloAsync("slewis",new  IAsyncCallback<???>()  {
       public  void  onSuccess(String  result)  {
           // Do something with result
       }
       public  void  onFailure(Throwable  t)  {
           // Deal with network failure in appropriate manner
       }
   });

Thanks!

Martin


Back to the top