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

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

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

origin: apache/activemq

public void gc() {
  destination.gc();
}
origin: apache/activemq

@Override
public void gc() {
  next.gc();
}
origin: apache/activemq

@Override
public void gc() {
  for (Subscription sub : subscriptions.values()) {
    sub.gc();
  }
  destinationsLock.readLock().lock();
  try {
    for (Destination dest : destinations.values()) {
      dest.gc();
    }
  } finally {
    destinationsLock.readLock().unlock();
  }
}
origin: org.apache.activemq/activemq-broker

@Override
public void gc() {
  next.gc();
}
origin: org.apache.activemq/activemq-all

@Override
public void gc() {
  next.gc();
}
origin: org.apache.activemq/activemq-broker

public void gc() {
  destination.gc();
}
origin: org.apache.activemq/activemq-osgi

@Override
public void gc() {
  next.gc();
}
origin: org.apache.activemq/activemq-all

public void gc() {
  destination.gc();
}
origin: pierre/meteo

public void gc() {
  next.gc();
}
origin: org.apache.activemq/activemq-osgi

public void gc() {
  destination.gc();
}
origin: pierre/meteo

public void gc() {
  destination.gc();
}
origin: pierre/meteo

public void gc() {
  for (Iterator<Subscription> iter = subscriptions.values().iterator(); iter.hasNext();) {
    Subscription sub = iter.next();
    sub.gc();
  }
  synchronized (destinationsMutex) {
    for (Iterator<Destination> iter = destinations.values().iterator(); iter.hasNext();) {
      Destination dest = iter.next();
      dest.gc();
    }
  }
}
origin: org.apache.activemq/activemq-broker

@Override
public void gc() {
  for (Subscription sub : subscriptions.values()) {
    sub.gc();
  }
  destinationsLock.readLock().lock();
  try {
    for (Destination dest : destinations.values()) {
      dest.gc();
    }
  } finally {
    destinationsLock.readLock().unlock();
  }
}
origin: org.apache.activemq/activemq-all

@Override
public void gc() {
  for (Subscription sub : subscriptions.values()) {
    sub.gc();
  }
  destinationsLock.readLock().lock();
  try {
    for (Destination dest : destinations.values()) {
      dest.gc();
    }
  } finally {
    destinationsLock.readLock().unlock();
  }
}
origin: org.apache.activemq/activemq-osgi

@Override
public void gc() {
  for (Subscription sub : subscriptions.values()) {
    sub.gc();
  }
  destinationsLock.readLock().lock();
  try {
    for (Destination dest : destinations.values()) {
      dest.gc();
    }
  } finally {
    destinationsLock.readLock().unlock();
  }
}
org.apache.activemq.broker.regionDestinationgc

Popular methods of Destination

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

Popular in Java

  • Parsing JSON documents to java classes using gson
  • setScale (BigDecimal)
  • notifyDataSetChanged (ArrayAdapter)
  • getSharedPreferences (Context)
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • Best plugins for Eclipse
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