Tabnine Logo
Destination.getMemoryUsage
Code IndexAdd Tabnine to your IDE (free)

How to use
getMemoryUsage
method
in
org.apache.activemq.broker.region.Destination

Best Java code snippets using org.apache.activemq.broker.region.Destination.getMemoryUsage (Showing top 20 results out of 315)

origin: apache/activemq

@Override
public MemoryUsage getMemoryUsage() {
  return next.getMemoryUsage();
}
origin: apache/activemq

/**
 * @return the memory usage as a percentage for this Destination
 */
public int getMemoryPercentUsage() {
  return destination.getMemoryUsage().getPercentUsage();
}
origin: apache/activemq

/**
 * @return the memory used by this destination in bytes
 */
public long getMemoryUsageByteCount() {
  return destination.getMemoryUsage().getUsage();
}
origin: apache/activemq

/**
 * @return  the memory limit for this destination in bytes
 */
public long getMemoryLimit() {
  return destination.getMemoryUsage().getLimit();
}
origin: apache/activemq

@Override
public long getMemoryLimit() {
  return destination.getMemoryUsage().getLimit();
}
origin: apache/activemq

@Override
public void setMemoryLimit(long limit) {
  destination.getMemoryUsage().setLimit(limit);
}
origin: apache/activemq

@Override
public long getMemoryUsageByteCount() {
  return destination.getMemoryUsage().getUsage();
}
origin: apache/activemq

@Override
public float getMemoryUsagePortion() {
  return destination.getMemoryUsage().getUsagePortion();
}
origin: apache/activemq

@Override
public void setMemoryUsagePortion(float value) {
  destination.getMemoryUsage().setUsagePortion(value);
}
origin: apache/activemq

@Override
public int getMemoryPercentUsage() {
  return destination.getMemoryUsage().getPercentUsage();
}
origin: apache/activemq

statsMessage.setInt("memoryPercentUsage", dest.getMemoryUsage().getPercentUsage());
statsMessage.setLong("memoryUsage", dest.getMemoryUsage().getUsage());
statsMessage.setLong("memoryLimit", dest.getMemoryUsage().getLimit());
statsMessage.setDouble("averageEnqueueTime", stats.getProcessTime().getAverageTime());
statsMessage.setDouble("maxEnqueueTime", stats.getProcessTime().getMaxTime());
origin: org.apache.activemq/activemq-broker

/**
 * @return  the memory limit for this destination in bytes
 */
public long getMemoryLimit() {
  return destination.getMemoryUsage().getLimit();
}
origin: org.apache.activemq/activemq-broker

/**
 * @return the memory usage as a percentage for this Destination
 */
public int getMemoryPercentUsage() {
  return destination.getMemoryUsage().getPercentUsage();
}
origin: org.apache.activemq/activemq-broker

/**
 * @return the memory used by this destination in bytes
 */
public long getMemoryUsageByteCount() {
  return destination.getMemoryUsage().getUsage();
}
origin: org.apache.activemq/activemq-all

/**
 * @return the memory used by this destination in bytes
 */
public long getMemoryUsageByteCount() {
  return destination.getMemoryUsage().getUsage();
}
origin: org.apache.activemq/activemq-all

/**
 * @return  the memory limit for this destination in bytes
 */
public long getMemoryLimit() {
  return destination.getMemoryUsage().getLimit();
}
origin: org.apache.activemq/activemq-osgi

/**
 * @return the memory usage as a percentage for this Destination
 */
public int getMemoryPercentUsage() {
  return destination.getMemoryUsage().getPercentUsage();
}
origin: org.apache.activemq/activemq-broker

@Override
public void setMemoryLimit(long limit) {
  destination.getMemoryUsage().setLimit(limit);
}
origin: org.apache.activemq/activemq-broker

@Override
public long getMemoryUsageByteCount() {
  return destination.getMemoryUsage().getUsage();
}
origin: org.apache.activemq/activemq-broker

@Override
public long getMemoryLimit() {
  return destination.getMemoryUsage().getLimit();
}
org.apache.activemq.broker.regionDestinationgetMemoryUsage

Popular methods of Destination

  • getConsumers
  • getDestinationStatistics
  • getName
  • getActiveMQDestination
  • browse
  • removeSubscription
  • acknowledge
  • addProducer
  • addSubscription
  • dispose
  • fastProducer
    Called to notify a producer is too fast
  • gc
  • fastProducer,
  • gc,
  • getBlockedProducerWarningInterval,
  • getCursorMemoryHighWaterMark,
  • getDeadLetterStrategy,
  • getMaxAuditDepth,
  • getMaxBrowsePageSize,
  • getMaxPageSize,
  • getMaxProducersToAudit

Popular in Java

  • Reading from database using SQL prepared statement
  • setContentView (Activity)
  • getContentResolver (Context)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • SocketException (java.net)
    This SocketException may be thrown during socket creation or setting options, and is the superclass
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • Top 12 Jupyter Notebook extensions
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