Interface IpdJob


public interface IpdJob
In product Diagnostic Job which will be run by IpdJobRunner. Objects of this interface have to be registered in Ipd Job Runner.
 
     public CustomIpdJob(final IpdJobRegistry jobRegistry) {
         jobRegistry.register(this, "my.job.key");
     }
 
 
Since:
2.2.0
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    This method is executed periodically on an IPD scheduler.
  • Method Details

    • runJob

      void runJob() throws InterruptedException
      This method is executed periodically on an IPD scheduler. You implement it to make IPD measurements on a regular basis.
      Throws:
      InterruptedException