Tabnine Logo
Broker.removeDestinationInfo
Code IndexAdd Tabnine to your IDE (free)

How to use
removeDestinationInfo
method
in
org.apache.activemq.broker.Broker

Best Java code snippets using org.apache.activemq.broker.Broker.removeDestinationInfo (Showing top 11 results out of 315)

origin: apache/activemq

@Override
public void removeDestinationInfo(ConnectionContext context, DestinationInfo info) throws Exception {
  getNext().removeDestinationInfo(context, info);
}
origin: apache/activemq

@Override
public Response processRemoveDestination(DestinationInfo info) throws Exception {
  TransportConnectionState cs = lookupConnectionState(info.getConnectionId());
  broker.removeDestinationInfo(cs.getContext(), info);
  if (info.getDestination().isTemporary()) {
    cs.removeTempDestination(info.getDestination());
  }
  return null;
}
origin: pierre/meteo

public void removeDestinationInfo(ConnectionContext context, DestinationInfo info) throws Exception {
  next.removeDestinationInfo(context, info);
}
origin: org.apache.activemq/activemq-broker

@Override
public void removeDestinationInfo(ConnectionContext context, DestinationInfo info) throws Exception {
  getNext().removeDestinationInfo(context, info);
}
origin: org.apache.activemq/activemq-osgi

@Override
public void removeDestinationInfo(ConnectionContext context, DestinationInfo info) throws Exception {
  getNext().removeDestinationInfo(context, info);
}
origin: org.apache.activemq/activemq-all

@Override
public void removeDestinationInfo(ConnectionContext context, DestinationInfo info) throws Exception {
  getNext().removeDestinationInfo(context, info);
}
origin: pierre/meteo

public void removeDestinationInfo(ConnectionContext context, DestinationInfo info) throws Exception {
  getNext().removeDestinationInfo(context, info);
}
origin: org.apache.activemq/activemq-broker

@Override
public Response processRemoveDestination(DestinationInfo info) throws Exception {
  TransportConnectionState cs = lookupConnectionState(info.getConnectionId());
  broker.removeDestinationInfo(cs.getContext(), info);
  if (info.getDestination().isTemporary()) {
    cs.removeTempDestination(info.getDestination());
  }
  return null;
}
origin: org.apache.activemq/activemq-osgi

@Override
public Response processRemoveDestination(DestinationInfo info) throws Exception {
  TransportConnectionState cs = lookupConnectionState(info.getConnectionId());
  broker.removeDestinationInfo(cs.getContext(), info);
  if (info.getDestination().isTemporary()) {
    cs.removeTempDestination(info.getDestination());
  }
  return null;
}
origin: org.apache.activemq/activemq-all

@Override
public Response processRemoveDestination(DestinationInfo info) throws Exception {
  TransportConnectionState cs = lookupConnectionState(info.getConnectionId());
  broker.removeDestinationInfo(cs.getContext(), info);
  if (info.getDestination().isTemporary()) {
    cs.removeTempDestination(info.getDestination());
  }
  return null;
}
origin: pierre/meteo

public Response processRemoveDestination(DestinationInfo info) throws Exception {
  TransportConnectionState cs = lookupConnectionState(info.getConnectionId());
  broker.removeDestinationInfo(cs.getContext(), info);
  if (info.getDestination().isTemporary()) {
    cs.removeTempDestination(info.getDestination());
  }
  return null;
}
org.apache.activemq.brokerBrokerremoveDestinationInfo

Javadoc

Remove and process a DestinationInfo object

Popular methods of Broker

  • getAdaptor
    Get a Broker from the Broker Stack that is a particular class
  • getDestinationMap
    return a reference destination map of a region based on the destination type
  • removeDestination
  • commitTransaction
    Commits a transaction.
  • forgetTransaction
    Forgets a transaction.
  • getBrokerService
  • getClients
  • getDestinations
  • getPreparedTransactions
    Gets a list of all the prepared xa transactions.
  • getVmConnectorURI
  • removeConsumer
  • acknowledge
  • removeConsumer,
  • acknowledge,
  • addBroker,
  • addConnection,
  • addConsumer,
  • addDestination,
  • addDestinationInfo,
  • addProducer,
  • addSession,
  • beginTransaction

Popular in Java

  • Updating database using SQL prepared statement
  • getResourceAsStream (ClassLoader)
  • scheduleAtFixedRate (Timer)
  • getApplicationContext (Context)
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • Table (org.hibernate.mapping)
    A relational table
  • Top PhpStorm 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