Interface DataSourceSelector

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void destroy()
      Destroy the DataSourceSelector, maybe interrupt the Thread.
      DataSource get()
      Return a DataSource according to the implemention.
      String getName()
      Return the name of this DataSourceSelector.
      void init()
      Init the DataSourceSelector before use it.
      void setTarget​(String name)
      Set the target DataSource name to return.
    • Method Detail

      • get

        DataSource get()
        Return a DataSource according to the implemention.
      • setTarget

        void setTarget​(String name)
        Set the target DataSource name to return. Wether to use this or not, it's decided by the implemention.
      • getName

        String getName()
        Return the name of this DataSourceSelector. e.g. byName
      • init

        void init()
        Init the DataSourceSelector before use it.
      • destroy

        void destroy()
        Destroy the DataSourceSelector, maybe interrupt the Thread.