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

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

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

public enum ConnState {
  TCP_ESTABLISHED(1),
  TCP_SYN_SENT(2),
  TCP_SYN_RECV(3),
  TCP_FIN_WAIT1(4),
  TCP_FIN_WAIT2(5),
  TCP_TIME_WAIT(6),
  TCP_CLOSE(7),
  TCP_CLOSE_WAIT(8),
  TCP_LAST_ACL(9),
  TCP_LISTEN(10),
  TCP_CLOSING(11);
  private int code;

  ConnState(int code) {
    this.code = code;
  }

  public int getCode() {
    return code;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy