com.openfin.desktop.ExternalMessageResultHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openfin-desktop-java-adapter Show documentation
Show all versions of openfin-desktop-java-adapter Show documentation
The Java API for OpenFin Runtime
package com.openfin.desktop;
/**
* Interface to communicate results from calls to an ExternalMessageHandler back to the AppDesktop.
*
* @author wche
* @since 4/30/14
*/
public interface ExternalMessageResultHandler {
public boolean send(boolean result, String message);
}