Interface GIT.GVU.IMAP.AsynchronousAction
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface GIT.GVU.IMAP.AsynchronousAction

public interface AsynchronousAction
extends Object
Class to perform a callback action. To use this, make your class implement this method. This will get called when you need to perform a callback. You should hand the object which implements this interface into the appropriate setAction() routine.

Method Index

 o run(String, Object)
This method gets called by the toolkit to inform you to perform some asynchronous action.

Methods

 o run
  public abstract void run(String msg,
                           Object o)
This method gets called by the toolkit to inform you to perform some asynchronous action. The value of the first parameter is always a string which is the message in response to which this object is being invoked, i.e. "EXPUNGE" or "BYE". The value of the second parameter o varies based on the calback.

All Packages  Class Hierarchy  This Package  Previous  Next  Index