mds.ContextEventListener Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mdsplus-api Show documentation
Show all versions of mdsplus-api Show documentation
MDSplus interface (via lib or mdsip).
package mds;
/**
* $Id$
* Interface ConnectionListener describes method processConnectionEvent called by the DataProvider
* implementation to notify jScope of the current status of the data transfer. ConnectionListener objects
* register themselves by means of DataProvider.addConnectionListener() method.
*
* @see ConnectionEvent
* @see DataProvider
*/
import java.util.EventListener;
public interface ContextEventListener extends EventListener
{
public void handleContextEvent(Mds source, String msg, boolean ok);
}