All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.hajdbc.state.health.observer.ObserveAdapter Maven / Gradle / Ivy

There is a newer version: 3.6.61
Show newest version
package net.sf.hajdbc.state.health.observer;

/**
 * Observe adapter
 */
public interface ObserveAdapter {

  /**
   * Returns adapter name
   * @return adapter name
   */
  String  getName();

  /**
   * Returns adapter weight
   * Higher value is first running
   * @return adapter weight
   */
  int getWeight();

  /**
   * Return observable or not
   * @param ip ip address
   * @return observable or not
   */
  boolean isObservable(String ip);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy