Class NoneOutput
- java.lang.Object
-
- org.jacoco.agent.rt.internal.output.NoneOutput
-
- All Implemented Interfaces:
IAgentOutput
public class NoneOutput extends java.lang.Object implements IAgentOutput
Output that does nothing.
-
-
Constructor Summary
Constructors Constructor Description NoneOutput()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidshutdown()Shutdown the agent controller and clean up any resources it has created.voidstartup(AgentOptions options, RuntimeData data)Configure the agent controller with the supplied options and connect it to the coverage runtimevoidwriteExecutionData(boolean reset)Write all execution data in the runtime to a location determined by the agent controller.
-
-
-
Method Detail
-
startup
public final void startup(AgentOptions options, RuntimeData data)
Description copied from interface:IAgentOutputConfigure the agent controller with the supplied options and connect it to the coverage runtime- Specified by:
startupin interfaceIAgentOutput- Parameters:
options- Options used to configure the agent controllerdata- Execution data for this agent
-
writeExecutionData
public void writeExecutionData(boolean reset)
Description copied from interface:IAgentOutputWrite all execution data in the runtime to a location determined by the agent controller. This method should only be called by the Agent- Specified by:
writeExecutionDatain interfaceIAgentOutput- Parameters:
reset- iftrueexecution data is cleared afterwards
-
shutdown
public void shutdown()
Description copied from interface:IAgentOutputShutdown the agent controller and clean up any resources it has created.- Specified by:
shutdownin interfaceIAgentOutput
-
-