All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.camunda.bpm.scenario.defer.Deferred Maven / Gradle / Ivy

package org.camunda.bpm.scenario.defer;


/**
 * @author Martin Schimak
 */
public interface Deferred {

  /**
   * Implement this method to define the action which should
   * be executed after a certain period of time.
   *
   * @throws Exception in case your custom code throws checked exceptions.
   * Such exceptions will be wrapped into RuntimeExceptions and rethrown.
   */
  void execute() throws Exception;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy