https://bugzilla.novell.com/show_bug.cgi?id=634711

https://bugzilla.novell.com/show_bug.cgi?id=634711#c2


Mike Kestner <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED

--- Comment #2 from Mike Kestner <[email protected]> 2010-09-10 13:30:51 UTC 
---
In the current preview, we provide the ability to assign Action delegates to
all these APIs, which should solve the issues you've raised.  The problems you
were having seem to have been difficulty in implementing the IRunnable
interface.  FYI, the recommended way of doing so is to subclass
Java.Lang.Object, as with any interface that derives from IJavaObject.  So
something like:

class MyRunnable : Java.Lang.Object, Java.Lang.IRunnable {

   public void Run ()
   {
       // do some work
   }
}

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to