Interface ProjectsImportProcess
-
public interface ProjectsImportProcess
Represents one running Projects import.- Author:
- Dmitry Treskunov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProjectsImportLog
getLog()
Get snapshot of the import log.ProjectsImportResult
getResult()
Get result of this import.long
getStartedTime()
Return the time when this import was started.boolean
isDone()
void
stop()
-
-
-
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()
-
-