Skip to end of banner
Go to start of banner

Helper Routines

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Current »

There are two helper routines available to ease your work with persistent variables. These routines allow you to set or retrieve the value of a persistent variable from a script that is not in the context of the issue or just to retrieve a global variable:

Routines

  • Page:
    getPersistentVar (Power Scripts™ for Confluence) — Gets the persistent var, as a string
  • Page:
    setPersistentVar (Power Scripts™ for Confluence) — Sets the persistent var, as a string

Values are treated as strings. For the above example:

string globalCounterVar = getPersistentVar("counter");
number test_one_counter = getPersistentVar("TEST-1", "counter"); //notice the implicit cast! values are treated like strings, though!
  • Although useful, persistent variables come with a small performance penalty. Don't overuse them!

  • There's no way to delete a persistent var (other than direct SQL) at the moment. Think hard if you really need them.

See More

Unable to render {children}. Page not found: New Copy - Persistent Variables.

  • No labels