接口 DataSourceSelector

所有已知实现类:
NamedDataSourceSelector, RandomDataSourceSelector, StickyRandomDataSourceSelector

public interface DataSourceSelector
Interface for those selector to implement. e.g. Random and Named
作者:
DigitalSonic
  • 方法概要

    修饰符和类型
    方法
    说明
    void
    Destroy the DataSourceSelector, maybe interrupt the Thread.
    get()
    Return a DataSource according to the implemention.
    Return the name of this DataSourceSelector.
    void
    Init the DataSourceSelector before use it.
    void
    Set the target DataSource name to return.
  • 方法详细资料

    • 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.