com.atlassian.jira.task.context
Interface Context


public interface Context

Task context. Can be used to provide status updates to clients.

Null is not allowed for any method arguments or return values.

Instances should internally protect any state from concurrent updates and so should require no external synchronisation if shared by multiple threads.

Since:
v3.13

Nested Class Summary
static interface Context.Task
          A Task is a unit of work.
 
Method Summary
 void setName(String name)
          Set the name of the current step.
 Context.Task start(Object input)
          Start a new sub-task.
 

Method Detail

setName

void setName(String name)
Set the name of the current step.

Parameters:
name - the name

start

Context.Task start(Object input)
Start a new sub-task. These should be completed in a
finally
block.

Parameters:
input - the object of the task, can be used for tracking currently executing tasks.
Returns:
the new Task.


Copyright © 2002-2014 Atlassian. All Rights Reserved.