Uses of Interface
com.atlassian.jira.task.TaskProgressSink

Packages that use TaskProgressSink
com.atlassian.jira.action.admin   
com.atlassian.jira.bc.dataimport   
com.atlassian.jira.bc.imports.project   
com.atlassian.jira.imports.project   
com.atlassian.jira.imports.project.taskprogress   
com.atlassian.jira.task   
com.atlassian.jira.task.context   
com.atlassian.jira.util.index   
com.atlassian.jira.web.action.setup   
com.atlassian.jira.workflow.migration   
com.atlassian.jira.workflow.migration.enterprise   
 

Uses of TaskProgressSink in com.atlassian.jira.action.admin
 

Methods in com.atlassian.jira.action.admin with parameters of type TaskProgressSink
 void OfbizImportHandler.setTaskProgressSink(TaskProgressSink taskProgressSink)
           
 

Uses of TaskProgressSink in com.atlassian.jira.bc.dataimport
 

Methods in com.atlassian.jira.bc.dataimport with parameters of type TaskProgressSink
 DataImportService.ImportResult DefaultDataImportService.doImport(com.atlassian.crowd.embedded.api.User loggedInUser, DataImportService.ImportValidationResult result, TaskProgressSink taskProgressSink)
           
 DataImportService.ImportResult DataImportService.doImport(com.atlassian.crowd.embedded.api.User loggedInUser, DataImportService.ImportValidationResult result, TaskProgressSink taskProgressSink)
          Performs the actual import given a valid validation result.
 ServiceOutcome<Void> DefaultExportService.export(com.atlassian.crowd.embedded.api.User loggedInUser, String filename, ExportService.Style style, TaskProgressSink taskProgressSink)
           
 ServiceOutcome<Void> ExportService.export(com.atlassian.crowd.embedded.api.User loggedInUser, String filename, ExportService.Style style, TaskProgressSink taskProgressSink)
          Export JIRA to the given filename with the specified backup style.
 ServiceOutcome<Void> DefaultExportService.export(com.atlassian.crowd.embedded.api.User loggedInUser, String filename, TaskProgressSink taskProgressSink)
           
 ServiceOutcome<Void> ExportService.export(com.atlassian.crowd.embedded.api.User loggedInUser, String filename, TaskProgressSink taskProgressSink)
          Export JIRA to the given filename.
 ServiceOutcome<Void> DefaultExportService.exportForDevelopment(com.atlassian.crowd.embedded.api.User loggedInUser, String xmlFilename, TaskProgressSink taskProgressSink)
           
 ServiceOutcome<Void> ExportService.exportForDevelopment(com.atlassian.crowd.embedded.api.User loggedInUser, String xmlFilename, TaskProgressSink taskProgressSink)
          Export JIRA to the given filename.
 

Uses of TaskProgressSink in com.atlassian.jira.bc.imports.project
 

Methods in com.atlassian.jira.bc.imports.project with parameters of type TaskProgressSink
 BackupOverview DefaultProjectImportService.getBackupOverview(JiraServiceContext jiraServiceContext, ProjectImportOptions projectImportOptions, TaskProgressSink taskProgressSink)
           
 BackupOverview ProjectImportService.getBackupOverview(JiraServiceContext jiraServiceContext, ProjectImportOptions projectImportOptions, TaskProgressSink taskProgressSink)
          Returns a BackupOverview object containing the overview of information from the backup file if the backup files build number and edition match those of the running instance of JIRA.
 

Uses of TaskProgressSink in com.atlassian.jira.imports.project
 

Methods in com.atlassian.jira.imports.project with parameters of type TaskProgressSink
 BackupOverview ProjectImportManager.getBackupOverview(String pathToBackupXml, TaskProgressSink taskProgressSink, I18nHelper i18n)
          Parses through the provided JIRA XML backup file and creates a BackupOverview.
 BackupOverview DefaultProjectImportManager.getBackupOverview(String pathToBackupXml, TaskProgressSink taskProgressSink, I18nHelper i18n)
           
 

Uses of TaskProgressSink in com.atlassian.jira.imports.project.taskprogress
 

Methods in com.atlassian.jira.imports.project.taskprogress that return TaskProgressSink
 TaskProgressSink TaskProgressInterval.getTaskProgressSink()
          Returns the TaskProgressSink that this interval is to be used for.
 

Constructors in com.atlassian.jira.imports.project.taskprogress with parameters of type TaskProgressSink
EntityTypeTaskProgressProcessor(int numEntityTypes, TaskProgressSink taskProgressSink, I18nHelper i18n)
           
TaskProgressInterval(TaskProgressSink taskProgressSink, int startPercent, int endPercent)
           
 

Uses of TaskProgressSink in com.atlassian.jira.task
 

Classes in com.atlassian.jira.task that implement TaskProgressSink
 class CompositeProgressSink
          A task progress sink that is made up of several other task progress sinks.
 class JohnsonEventProgressSink
          A task progress sink that can update a Johnson Event with progress updates.
 class LoggingProgressSink
          A task progress sink that will log progress updates to the logger passed in.
 class ScalingTaskProgessSink
          Takes the "virtual progress" made and scales it into an "actual progress" for the contained sink.
 class StatefulTaskProgressSink
          A simple TaskProgressSink thats keeps track of progress.
 class StepTaskProgressSink
          Sink that divides a range a progress range into a number of steps.
 class TimeBasedLogSink
          This TaskProgressSink will output progress to the Logger if either the percentage progress changes or its been more than n milliseconds since the last log entry.
 

Fields in com.atlassian.jira.task declared as TaskProgressSink
static TaskProgressSink TaskProgressSink.NULL_SINK
          A simple sink that does nothing.
 

Methods in com.atlassian.jira.task with parameters of type TaskProgressSink
static Collection StatefulTaskProgressSink.createPercentageSinksForRange(long startRange, long endRange, int numberOfDivisions, TaskProgressSink sink)
          Return a collection of sinks that allows progress to be reported across the specified ragnge.
 void ProvidesTaskProgress.setTaskProgressSink(TaskProgressSink taskProgressSink)
          This is called to set in a TaskProgressSink that can be used to send task progress information to
 

Constructors in com.atlassian.jira.task with parameters of type TaskProgressSink
CompositeProgressSink(TaskProgressSink... delegates)
           
ProgressMonitoringFileInputStream(InputStream in, TaskProgressSink taskProgressSink, String subTask, String message)
           
ScalingTaskProgessSink(long actualStart, long actualEnd, long virtualStart, long virtualEnd, TaskProgressSink delegateSink)
          Create the sink with the specified virtual and actual progress ranges.
ScalingTaskProgessSink(long actualStart, long actualEnd, TaskProgressSink delegateSink)
          Create the sink with the specified actual range.
StatefulTaskProgressSink(long minProgress, long maxProgress, long currentProgress, TaskProgressSink delegateSink)
          Create the sink.
StatefulTaskProgressSink(long minProgress, long maxProgress, TaskProgressSink delegateSink)
          Create the sink.
StepTaskProgressSink(long startProgress, long endProgress, long actions, TaskProgressSink sink)
          Create the Sink with the passed parameters.
TimeBasedLogSink(org.apache.log4j.Logger log, String description, long maxTimeBetweenEvents, TaskProgressSink delegateSink)
           
 

Uses of TaskProgressSink in com.atlassian.jira.task.context
 

Methods in com.atlassian.jira.task.context with parameters of type TaskProgressSink
static Context Contexts.percentageReporter(Sized sized, TaskProgressSink sink, I18nHelper i18n, org.apache.log4j.Logger logger, String msg)
           
static Context Contexts.percentageReporter(Sized sized, TaskProgressSink sink, I18nHelper i18n, org.apache.log4j.Logger logger, String msg, com.atlassian.johnson.event.Event event)
           
 

Uses of TaskProgressSink in com.atlassian.jira.util.index
 

Methods in com.atlassian.jira.util.index with parameters of type TaskProgressSink
static Context Contexts.percentageReporter(Sized sized, TaskProgressSink sink, I18nHelper i18n, org.apache.log4j.Logger logger)
           
static Context Contexts.percentageReporter(Sized sized, TaskProgressSink sink, I18nHelper i18n, org.apache.log4j.Logger logger, com.atlassian.johnson.event.Event event)
           
 

Uses of TaskProgressSink in com.atlassian.jira.web.action.setup
 

Methods in com.atlassian.jira.web.action.setup with parameters of type TaskProgressSink
 void DataImportAsyncCommand.setTaskProgressSink(TaskProgressSink taskProgressSink)
           
 

Uses of TaskProgressSink in com.atlassian.jira.workflow.migration
 

Methods in com.atlassian.jira.workflow.migration with parameters of type TaskProgressSink
 void WorkflowAsynchMigrator.setTaskProgressSink(TaskProgressSink taskProgressSink)
           
 

Uses of TaskProgressSink in com.atlassian.jira.workflow.migration.enterprise
 

Methods in com.atlassian.jira.workflow.migration.enterprise with parameters of type TaskProgressSink
 WorkflowMigrationResult EnterpriseWorkflowMigrationHelper.migrate(TaskProgressSink sink)
           
 



Copyright © 2002-2012 Atlassian. All Rights Reserved.