Tabnine Logo
JmxManaged
Code IndexAdd Tabnine to your IDE (free)

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

Best Java code snippets using de.mhus.lib.annotations.jmx.JmxManaged (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

} while(anno == null);
description = anno.descrition();
HashSet<String> attr = new HashSet<String>();
      } else {
        methods.put(m.getName(), m);
        operations.add(new MBeanOperationInfo(anno.descrition(), m));
  Method g = getter.get(name);
  Method s = setter.get(name);
  attributes.add(new MBeanAttributeInfo(name, g != null ? g.getAnnotation(JmxManaged.class).descrition() : s.getAnnotation(JmxManaged.class).descrition() , g, s));
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;
}
de.mhus.lib.annotations.jmxJmxManaged

Most used methods

  • <init>
  • descrition

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getApplicationContext (Context)
  • putExtra (Intent)
  • addToBackStack (FragmentTransaction)
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • Notification (javax.management)
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin
  • Top Sublime Text plugins
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