Package edu.indiana.extreme.xbaya.event

Examples of edu.indiana.extreme.xbaya.event.Event


    KarmaClient karma = new KarmaClient(this, kermaURL, workflowInstanceID,
        rate);
    karma.start();

    // Enable/disable some menu items and show the monitor panel.
    sendSafeEvent(new Event(Type.KARMA_STARTED));
  }
View Full Code Here


  private void subscribe() throws MonitorException {
    this.wsmgClient = new WsmgClient(this);
    this.wsmgClient.subscribe();

    // Enable/disable some menu items and show the monitor panel.
    sendSafeEvent(new Event(Type.MONITOR_STARTED));
  }
View Full Code Here

    sendSafeEvent(new Event(Type.MONITOR_STARTED));
  }

  private void unsubscribe(WsmgClient client) throws MonitorException {
    // Enable/disable some menu items.
    sendSafeEvent(new Event(Type.MONITOR_STOPED));

    client.unsubscribe();
  }
View Full Code Here

            URI messageBoxURL) {
        this.brokerURL = brokerURL;
        this.topic = topic;
        this.pullMode = pullMode;
        this.messageBoxURL = messageBoxURL;
        sendSafeEvent(new Event(Type.MONITOR_CONFIGURATION_CHANGED));
    }
View Full Code Here

     * @param brokerURL
     *            The brokerLocation to set.
     */
    public void setBrokerURL(URI brokerURL) {
        this.brokerURL = brokerURL;
        sendSafeEvent(new Event(Type.MONITOR_CONFIGURATION_CHANGED));
    }
View Full Code Here

     * @param topic
     *            The topic to set
     */
    public void setTopic(String topic) {
        this.topic = StringUtil.trimAndNullify(topic);
        sendSafeEvent(new Event(Type.MONITOR_CONFIGURATION_CHANGED));
    }
View Full Code Here

     * @param messageBoxURL
     *            The messageBoxUrl to set.
     */
    public void setMessageBoxURL(URI messageBoxURL) {
        this.messageBoxURL = messageBoxURL;
        sendSafeEvent(new Event(Type.MONITOR_CONFIGURATION_CHANGED));
    }
View Full Code Here

     * @param pullMode
     *            The pullMode to set.
     */
    public void setPullMode(boolean pullMode) {
        this.pullMode = pullMode;
        sendSafeEvent(new Event(Type.MONITOR_CONFIGURATION_CHANGED));
    }
View Full Code Here

  /**
   * Constructs a WorkflowProxyClient.
   */
  public WorkflowProxyClient() {
    // Nothing
    sendSafeEvent(new Event(Event.Type.GPEL_ENGINE_CONNECTED));
  }
View Full Code Here

   * @param engineURL
   * @throws WorkflowProxyException
   */
  public void setEngineURL(URI engineURL) throws WorkflowEngineException {
    super.setEngineURL(engineURL);
    sendSafeEvent(new Event(Event.Type.GPEL_ENGINE_CONNECTED));
    // connect();
  }
View Full Code Here

TOP

Related Classes of edu.indiana.extreme.xbaya.event.Event

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.