Interface PVNameToKeyMapping

All Known Implementing Classes:
ChunkKeyKeyMapping, ConvertPVNameToKey

public interface PVNameToKeyMapping
Interface for converting a PV name to something that forms the prefix of a chunk's key. See the default implementation for more details
Author:
mshankar
  • Method Details

    • initialize

      void initialize(ConfigService configService) throws ConfigException
      Throws:
      ConfigException
    • convertPVNameToKey

      String convertPVNameToKey(String pvName)
    • breakIntoParts

      String[] breakIntoParts(String pvName)
      Break a PV name into parts separated by the site specific separators For examples, ABC:123:DEF gets broken into [ABC, 123, DEF]
      Parameters:
      pvName - The name of PV.
      Returns:
      String Parts separated by separators
    • overrideTerminator

      PVNameToKeyMapping overrideTerminator(char terminator)