Tabnine Logo
de.mhus.lib.annotations.jmx
Code IndexAdd Tabnine to your IDE (free)

How to use de.mhus.lib.annotations.jmx

Best Java code snippets using de.mhus.lib.annotations.jmx (Showing top 20 results out of 315)

origin: de.mhus.lib/mhu-lib-core

@JmxManaged(descrition="Reset the counter statistic")
public void reset() {
  isClosed = false;
  cnt = 0;
  startTime = 0;
  lastTime = 0;
}

origin: de.mhus.lib/mhu-lib-core

@JmxManaged(descrition="Should the counter create and throw a RunntimeException() on next count")
public boolean isThrowExceptionOnNextCount() {
  return throwExceptionOnNextCount;
}
@JmxManaged(descrition="Should the counter create and throw a RunntimeException() on next count")
origin: de.mhus.lib/mhu-lib-core

@JmxManaged(descrition="Set the interval after it will sleeping")
public void setSleepInterval(long sleepInterval) {
  this.sleepInterval = sleepInterval;
}
@JmxManaged(descrition="Get the seconds to sleep each interval")
origin: de.mhus.lib/mhu-lib-core

@JmxManaged
public long getValue() {
  return value;
}
origin: de.mhus.lib/mhu-lib-persistence

/**
 * Cleanup the connection pool. Unused or closed connections will be removed.
 * TODO new strategy to remove unused connections - not prompt, need a timeout time or minimum pool size.
 * @param unusedAlso 
 */
@JmxManaged(descrition="Cleanup unused connections")
public abstract void cleanup(boolean unusedAlso);
origin: de.mhus.lib/mhu-lib-persistence

/**
 * Returns the persistent schema properties if supported.
 * @return The properties or null
 */
@JmxManaged(descrition="Database Properties of the Schema")
public abstract DbProperties getSchemaProperties();
origin: de.mhus.lib/mhu-lib-persistence

@JmxManaged(descrition="Unique name of the pool")
public String getPoolId() {
  return name;
}
origin: de.mhus.lib/mhu-lib-core

@JmxManaged(descrition="Get the interval")
public long getSleepInterval() {
  return sleepInterval;
}
@JmxManaged(descrition="Set the interval after it will sleeping")
origin: de.mhus.lib/mhu-lib-core

@JmxManaged(descrition="Get the seconds to sleep each interval")
public int getSleepSeconds() {
  return sleepSeconds;
}
@JmxManaged(descrition="Set the seconds to sleep each interval")
origin: de.mhus.lib/mhu-lib-persistence

/**
 * Current pool size.
 * 
 * @return x Current pool size, also pending closed connections.
 */
@JmxManaged(descrition="Current size of the pool")
public abstract int getSize();
origin: de.mhus.lib/mhu-lib-persistence

@Override
@JmxManaged(descrition="Used Schema")
public DbSchema getSchema() {
  return schema;
}
origin: de.mhus.lib/mhu-lib-core

@JmxManaged(descrition = "Name of this value")
public String getName() {
  return name;
}

origin: de.mhus.lib/mhu-lib-core

@JmxManaged(descrition="Set the seconds to sleep each interval")
public void setSleepSeconds(int sleepSeconds) {
  this.sleepSeconds = sleepSeconds;
}

origin: de.mhus.lib/mhu-lib-core

@JmxManaged(descrition="Should the counter create and throw a RunntimeException() on next count")
public void setThrowExceptionOnNextCount(boolean throwExceptionOnNextCount) {
  this.throwExceptionOnNextCount = throwExceptionOnNextCount;
}

origin: de.mhus.lib/mhu-lib-core

@JmxManaged
public boolean isValue() {
  return value;
}
origin: de.mhus.lib/mhu-lib-core

@JmxManaged
public String getValue() {
  return value;
}
origin: de.mhus.lib/mhu-lib-core

@JmxManaged
public int getValue() {
  return value;
}
origin: de.mhus.lib/mhu-lib-core

@JmxManaged(descrition = "Amount of counts")
public long getValue() {
  return cnt;
}

origin: de.mhus.lib/mhu-lib-core

@JmxManaged
public float getValue() {
  return value;
}
origin: de.mhus.lib/mhu-lib-core

@JmxManaged
public double getValue() {
  return value;
}
de.mhus.lib.annotations.jmx

Most used classes

  • JmxManaged
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now