Package jetbrains.buildServer.artifacts
Interface DownloadingArtifactState
-
public interface DownloadingArtifactState
Represents state of artifact dependency download
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getFinishTime()
String
getRetrieverId()
long
getStartTime()
long
getTransferred()
String
getUrl()
boolean
isCache()
boolean
isFailed()
boolean
isFinished()
-
-
-
Method Detail
-
getUrl
String getUrl()
- Returns:
- URL of the artifact
-
isCache
boolean isCache()
-
getRetrieverId
String getRetrieverId()
- Returns:
- id of retriever used to download this artifact
-
getFinishTime
long getFinishTime()
- Returns:
- download finish time. -1 if download is still in progress
-
getStartTime
long getStartTime()
- Returns:
- download start time
-
getTransferred
long getTransferred()
- Returns:
- downloaded bytes (if tracked by retriever)
-
isFailed
boolean isFailed()
-
isFinished
boolean isFinished()
-
-