Interface ControllingPV

  • All Known Implementing Classes:
    EPICS_V3_PV

    public interface ControllingPV
    PV's that can control the archiving of other PV's will need to implement this interface.
    Author:
    luofeng Refactored by mshankar
    • Method Summary

      Modifier and Type Method Description
      void addControledPV​(String pvName)
      add pv controlled by this pv
      boolean isEnableAllPV()  
      void start()
      Should be the same as the method in PV
      void stop()
      Should be the same as the method in PV
    • Method Detail

      • isEnableAllPV

        boolean isEnableAllPV()
        Returns:
        the status of all pvs controlled by this pv
      • addControledPV

        void addControledPV​(String pvName)
        add pv controlled by this pv
        Parameters:
        pvName - the name of pv controlled by this pv
      • start

        void start()
            throws Exception
        Should be the same as the method in PV
        Throws:
        Exception -  
      • stop

        void stop()
        Should be the same as the method in PV