Interface ProjectsImportProcess
-
public interface ProjectsImportProcessRepresents one running Projects import.- Author:
- Dmitry Treskunov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProjectsImportLoggetLog()Get snapshot of the import log.ProjectsImportResultgetResult()Get result of this import.longgetStartedTime()Return the time when this import was started.booleanisDone()voidstop()
-
-
-
Method Detail
-
stop
void stop()
-
isDone
boolean isDone()
-
getStartedTime
long getStartedTime()
Return the time when this import was started.
-
getLog
@NotNull ProjectsImportLog getLog()
Get snapshot of the import log.
-
getResult
@NotNull ProjectsImportResult getResult()
Get result of this import. Will block untilisDone()
-
-