Package jetbrains.buildServer.agent
Interface DataProcessorContext
-
public interface DataProcessorContext
Encapsulates the data for processing importData service message
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,String>
getArguments()
AgentRunningBuild
getBuild()
Build that is associated with data processingFile
getFile()
-
-
-
Method Detail
-
getBuild
@NotNull AgentRunningBuild getBuild()
Build that is associated with data processing- Returns:
- build that is running
-
getFile
@NotNull File getFile()
- Returns:
- path to a file from a well-known attribute
- Throws:
IllegalStateException
- implementation is expected to throw an IllegalStateException if the path argument was not specified- See Also:
DataProcessor
-
getArguments
@NotNull Map<String,String> getArguments()
- Returns:
- additional arguments of processing data
- See Also:
DataProcessor
-
-