Uses of Interface
com.openfin.desktop.AckListener

Packages that use AckListener
com.openfin.desktop   
com.openfin.desktop.win32   
 

Uses of AckListener in com.openfin.desktop
 

Methods in com.openfin.desktop with parameters of type AckListener
 void DesktopConnection.addEventCallback(org.json.JSONObject subscriptionObject, EventListener listener, AckListener callback, Object source)
          Registers an event listener on the specified event
protected  void OpenFinRuntime.addEventListener(org.json.JSONObject subscriptionObject, EventListener listener, AckListener callback)
          Registers an event listener on the specified event
 void Window.addEventListener(String type, EventListener listener, AckListener callback)
          Registers an event listener on the specified event
 void OpenFinRuntime.addEventListener(String type, EventListener listener, AckListener callback)
          Registers an event listener on the specified event
 void Application.addEventListener(String type, EventListener listener, AckListener callback)
          Registers an event listener on the specified event.
 void Window.animate(AnimationTransitions transitions, AnimationOptions options, AckListener callback)
          Performs the specified window transitions
 void Window.blur(AckListener listener)
          Removes focus to the window
 void Window.bringToFront(AckListener listener)
          Brings the window to the front of the window stack
 void OpenFinRuntime.clearCache(boolean cache, boolean cookies, boolean localStorage, boolean appcache, boolean userData, AckListener listener)
          Clears cached data containing window state/positions, application resource files (images, HTML, JavaScript files) cookies, and items stored in the Local Storage.
 void Window.close(AckListener listener)
          Closes the window
 void Notification.close(AckListener listener)
          Closes the notification
 void Application.close(AckListener listener)
          Deprecated. use close() instead.
 void Application.close(Boolean force, AckListener listener)
          Closes the application with a listener that gets called if the method succeeds
 void Application.createChildWindow(WindowOptions windowOptions, AckListener callback)
          Create a child window of this application
 void OpenFinRuntime.deleteCacheOnRestart(AckListener listener)
          Clears all cached data when App Desktop is restarted
 void Window.disableFrame(AckListener callback)
          Prevents a user from changing a window's size/position when using the window's frame
 void Window.enableFrame(AckListener callback)
          Allows a user from changing a window's size/position when using the window's frame
static void DesktopUtils.errorAck(AckListener callback, Ack ack)
           
static void DesktopUtils.errorAckOnException(AckListener ackListener, Object source, Exception ex)
          Call onError of an AckListen for an exception
 void OpenFinRuntime.exit(AckListener listener)
          Deprecated. use exit() instead.
 void Window.flash(AckListener callback)
          Draws attention to the window by flashing the taskbar and window caption.
 void Window.focus(AckListener listener)
          Gives focus to the window
 void OpenFinRuntime.getAllApplications(AckListener callback)
          Retrieves an array of data (uuid, running/active state) for all application windows
 void OpenFinRuntime.getAllWindows(AckListener listener)
          The object passed to callback takes the form:
 void Window.getBounds(AsyncCallback<WindowBounds> callback, AckListener listener)
          Gets the current bounds (top, left, width, height) of the window
 void OpenFinRuntime.getCommandLineArguments(AckListener listener)
          Retrieves the command line argument string that started App Desktop
 void OpenFinRuntime.getConfig(String section, AckListener callback)
          Retrieves the App Desktop's configuration
 void OpenFinRuntime.getDeviceId(AckListener listener)
          Gets Device ID
 void OpenFinRuntime.getEnvironmentVariable(String name, AckListener callback)
          Retrieve name of a environment variable
 void OpenFinRuntime.getEnvironmentVariables(String[] names, AckListener callback)
          Retrieve name of environment variables
 void Window.getGroup(AsyncCallback<List<Window>> groupHandler, AckListener callback)
          Passes a list of wrapped windows in the same group An empty list is returned if the window is not in a group.
 void OpenFinRuntime.getLog(String logName, AckListener listener)
          Retrieves the contents of the log with the specified filename
 void OpenFinRuntime.getLogList(AckListener listener)
          Retrieves an array of data objects for all available logs Each object in the returned array takes the form: { name: (string) the filename of the log, size: (integer) the size of the log in bytes, date: (integer) the unix time at which the log was created }
 void Application.getManifest(AckListener listener)
          Retrieves the JSON manifest that was used to create the application.
 void OpenFinRuntime.getMonitorInfo(AckListener listener)
          Retrieves an object that contains data about the about the
 void OpenFinRuntime.getMousePosition(AckListener listener)
          Returns the mouse in virtual screen coordinates (left, top)
 void Window.getNativeId(AckListener listener)
          Gets HWND of the current window
 void Window.getOptions(AsyncCallback<WindowOptions> callback, AckListener listener)
          Returns the current options as stored in the desktop
 void OpenFinRuntime.getProcessList(AckListener listener)
          Retrieves an array of all App Desktop processes that are currently running Each element in the array is an object containing the uuid and the name of the application to which the process belongs.
 void OpenFinRuntime.getProxySettings(AckListener listener)
          Retrieves the proxy settings object
 void Window.getSnapshot(AckListener callback)
          Gets a base64 encoded PN snapshot of the window
 void Window.getState(AckListener listener)
          Gets the current state ("minimized", "maximized", or "restored") of the window
 void OpenFinRuntime.getVersion(AckListener listener)
          Gets AppDesktop version number
 void Window.hide(AckListener listener)
          Hides the window if it is shown
 void Window.isShowing(AckListener listener)
          Determines if the window is currently showing
 void Window.joinGroup(Window window, AckListener callback)
          Joins the same window group as the specified window
 void OpenFinRuntime.launchExternalProcess(String path, String commandLine, AsyncCallback<LaunchExternalProcessResult> callback, AckListener listener)
          Runs an executable or batch file.
 void Window.leaveGroup(AckListener callback)
          Leaves the current window group so that the window can be move independently of those in the group.
 void OpenFinRuntime.log(String level, String message, AckListener listener)
          Writes a message to the log
 void Window.maximize(AckListener listener)
          Mazimizes the window
 void Window.mergeGroups(Window window, AckListener callback)
          Merges the instance's window group with the same window group as the specified window.
 void Window.minimize(AckListener listener)
          Minimizes the window
 void Window.moveBy(int deltaLeft, int deltaTop, AckListener listener)
          Moves the window by a specified amount
 void Window.moveTo(int left, int top, AckListener listener)
          Moves the window to a specified location
 void OpenFinRuntime.openUrlWithBrowser(AckListener listener)
          Opens the passed URL
 void InterApplicationBus.publish(String topic, Object message, AckListener callback)
          Publishes a message to a topic
 void OpenFinRuntime.releaseExternalProcess(String processUuid, AckListener callback)
          Removes the process entry for the passed UUID obtained from a previous call to DesktopSystem.launchExternalProcess().
 void DesktopConnection.removeEventCallback(org.json.JSONObject subscriptionObject, EventListener listener, AckListener callback, Object source)
          Removes a previously registered event listener from the specified event
 void Window.removeEventListener(String type, EventListener listener, AckListener callback)
          Removes a previously registered event listener from the specified event
 void OpenFinRuntime.removeEventListener(String type, EventListener listener, AckListener callback)
          Removes a previously registered event listener from the specified event
 void Application.removeEventListener(String type, EventListener listener, AckListener callback)
          Removes a previously registered event listener from the specified event
 void Application.removeTrayIcon(AckListener callback)
          Removes the application‚Äôs icon from the tray.
 void Window.resizeBy(int deltaWidth, int deltaHeight, String anchor, AckListener listener)
          Resizes the window by the specified amount
 void Window.resizeTo(int width, int height, AckListener listener)
          Resizes the window to the specified dimensions
 void Window.resizeTo(int width, int height, String anchor, AckListener listener)
          Resizes the window to the specified dimensions
 void Application.restart(AckListener listener)
          Restarts the application with a listener that gets called if the method succeeds
 void Window.restore(AckListener listener)
          Restores the window
 void Application.run(AckListener listener)
          Runs the application with a listener that gets called if the method succeeds
 void InterApplicationBus.send(String destinationUuid, String topic, Object message, AckListener listener)
          Sends a message to an application
 void DesktopConnection.sendAction(String action, org.json.JSONObject payload, AckListener listener, Object source)
          Sends a message to AppDesktop
 void DesktopConnection.sendActionToNotificationsCenter(String action, org.json.JSONObject payload, AckListener callback, Object source)
           
 void Notification.sendMessage(org.json.JSONObject message, AckListener listener)
          Sends a message to the notification
 void Notification.sendMessage(String message, AckListener listener)
          Sends a message to the notification
 void Window.setAsForeground(AckListener callback)
          Set's the window as the foreground window The window is activated(focused) and brought to front
 void Window.setBounds(int left, int top, int width, int height, AckListener listener)
          Sets the current bounds (top, left, width, height) of the window
 void OpenFinRuntime.setClipboard(String text, AckListener callback)
          Copies text to the clipboard
 void OpenFinRuntime.setCookie(String url, String name, String value, long ttl, boolean secure, boolean httpOnly, AckListener callback)
          Stores a cookie in the runtime
 void Application.setTrayIcon(String iconUrl, EventListener listener, AckListener callback)
          Adds a customizable icon in the system tray and notifies the application when clicked
 void Window.show(AckListener listener)
          Shows the window if it is hidden
 void Window.showAt(int left, int top, boolean toggle, AckListener listener)
          Shows the window if it is hidden at the specified location
 void OpenFinRuntime.showDeveloperTools(String applicationUUID, String windowName, AckListener callback)
          Shows Developer tool
 void Window.stopFlashing(AckListener callback)
          Stops flashing of taskbar and window caption
 void InterApplicationBus.subscribe(String sourceUuid, String topic, BusListener listener, AckListener callback)
          Subscribes to messages on the specified topic
static void DesktopUtils.successAck(AckListener callback, Ack ack)
           
 void Application.terminate(AckListener listener)
          Closes the application by terminating its process.
 void OpenFinRuntime.terminateExternalProcess(String processUuid, int timeout, boolean killTree, AsyncCallback<TerminateExternalProcessResult> callback, AckListener listener)
          Attempts to cleanly close an external process and terminates it if the close has not occured after the elapsed timeout in milliseconds.
 void InterApplicationBus.unsubscribe(String sourceUuid, String topic, BusListener listener, AckListener callback)
          Unsubscribes to messages on the specified topic
 void Window.updateOptions(WindowOptions options, AckListener listener)
          Changes a window's options that were defined upon creation
 void OpenFinRuntime.updateProxySettings(String type, String proxyAddress, int proxyPort, AckListener listener)
          Updates the proxy settings The passed type can be either "system" or "named".
 void Application.waitFor(AckListener listener)
          Waits for a hanging application.
 

Constructors in com.openfin.desktop with parameters of type AckListener
Application(ApplicationOptions options, DesktopConnection connection, AckListener listener)
          Application Constructor
Notification(NotificationOptions notificationOptions, NotificationListener notificationListener, DesktopConnection desktopConnection, AckListener listener)
          Notification constructor
 

Uses of AckListener in com.openfin.desktop.win32
 

Methods in com.openfin.desktop.win32 with parameters of type AckListener
static void WinMessageHelper.embedInto(long parentHwndId, Window childWindow, int width, int height, int left, int top, AckListener callback)
          Embeds a window in a target hWin
 

Constructors in com.openfin.desktop.win32 with parameters of type AckListener
ExternalWindowObserver(int port, String parentAppUuid, String name, Window window, AckListener listener)
          Establishes a connection and registers the window identified by hWnd with the desktop.
 



Copyright © 2016. All rights reserved.