[Mono-bugs] [Bug 634711] Updating the UI from a thread not working
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Fri Sep 10 09:30:52 EDT 2010
https://bugzilla.novell.com/show_bug.cgi?id=634711
https://bugzilla.novell.com/show_bug.cgi?id=634711#c2
Mike Kestner <mkestner at novell.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--- Comment #2 from Mike Kestner <mkestner at novell.com> 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.
More information about the mono-bugs
mailing list