Java Version of Action Delegate

Posted by ikurtz on Stack Overflow See other posts from Stack Overflow or by ikurtz
Published on 2010-05-17T16:31:11Z Indexed on 2010/05/17 16:41 UTC
Read the original article Hit count: 173

Filed under:
|
|

the issue i mentioned in this post is actually happening because of cross threading GUI issues (i hope).

could you help me with Java version of action delegate please?

in C# it is done as this inline:

        this.Invoke(new Action(delegate()
        {...}));

how is this achived in Java?

thank you.

© Stack Overflow or respective owner

Related posts about java

Related posts about threading