Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
string[] args = {issueType, project}; //assume we're in the context of an issue
interval varInterval = "30m";
runJobIn("script.sil", args, intervalvarInterval);

The example above will create a job that will run the script "script.sil" after 30 minutes. (the script will run only once)

...