blob: df75e8a2e07b7095db6ff13d3d41a5895443a34f [file] [log] [blame]
package brooklyn.management;
/**
* Options for describing how the execution manager will retain or expire a task after it has completed.
*/
public enum ExpirationPolicy {
/**
* When the task completes, immediately forget about it.
*/
IMMEDIATE,
/**
* When the task completes, retain a permanent historical record.
*/
NEVER
}