Tabnine Logo
MemoryTransactionStore.proxy
Code IndexAdd Tabnine to your IDE (free)

How to use
proxy
method
in
org.apache.activemq.store.memory.MemoryTransactionStore

Best Java code snippets using org.apache.activemq.store.memory.MemoryTransactionStore.proxy (Showing top 18 results out of 315)

origin: apache/activemq

@Override
public MessageStore createQueueMessageStore(ActiveMQQueue destination) throws IOException {
  MessageStore rc = queues.get(destination);
  if (rc == null) {
    rc = new MemoryMessageStore(destination);
    if (transactionStore != null) {
      rc = transactionStore.proxy(rc);
    }
    queues.put(destination, rc);
  }
  return rc;
}
origin: apache/activemq

@Override
public TopicMessageStore createTopicMessageStore(ActiveMQTopic destination) throws IOException {
  TopicMessageStore rc = topics.get(destination);
  if (rc == null) {
    rc = new MemoryTopicMessageStore(destination);
    if (transactionStore != null) {
      rc = transactionStore.proxy(rc);
    }
    topics.put(destination, rc);
  }
  return rc;
}
origin: org.apache.activemq/activemq-broker

@Override
public MessageStore createQueueMessageStore(ActiveMQQueue destination) throws IOException {
  MessageStore rc = queues.get(destination);
  if (rc == null) {
    rc = new MemoryMessageStore(destination);
    if (transactionStore != null) {
      rc = transactionStore.proxy(rc);
    }
    queues.put(destination, rc);
  }
  return rc;
}
origin: org.apache.activemq/activemq-broker

@Override
public TopicMessageStore createTopicMessageStore(ActiveMQTopic destination) throws IOException {
  TopicMessageStore rc = topics.get(destination);
  if (rc == null) {
    rc = new MemoryTopicMessageStore(destination);
    if (transactionStore != null) {
      rc = transactionStore.proxy(rc);
    }
    topics.put(destination, rc);
  }
  return rc;
}
origin: org.apache.activemq/activemq-osgi

@Override
public MessageStore createQueueMessageStore(ActiveMQQueue destination) throws IOException {
  MessageStore rc = queues.get(destination);
  if (rc == null) {
    rc = new MemoryMessageStore(destination);
    if (transactionStore != null) {
      rc = transactionStore.proxy(rc);
    }
    queues.put(destination, rc);
  }
  return rc;
}
origin: org.apache.activemq/activemq-osgi

@Override
public TopicMessageStore createTopicMessageStore(ActiveMQTopic destination) throws IOException {
  TopicMessageStore rc = topics.get(destination);
  if (rc == null) {
    rc = new MemoryTopicMessageStore(destination);
    if (transactionStore != null) {
      rc = transactionStore.proxy(rc);
    }
    topics.put(destination, rc);
  }
  return rc;
}
origin: org.apache.activemq/activemq-all

@Override
public MessageStore createQueueMessageStore(ActiveMQQueue destination) throws IOException {
  MessageStore rc = queues.get(destination);
  if (rc == null) {
    rc = new MemoryMessageStore(destination);
    if (transactionStore != null) {
      rc = transactionStore.proxy(rc);
    }
    queues.put(destination, rc);
  }
  return rc;
}
origin: org.apache.activemq/activemq-all

@Override
public TopicMessageStore createTopicMessageStore(ActiveMQTopic destination) throws IOException {
  TopicMessageStore rc = topics.get(destination);
  if (rc == null) {
    rc = new MemoryTopicMessageStore(destination);
    if (transactionStore != null) {
      rc = transactionStore.proxy(rc);
    }
    topics.put(destination, rc);
  }
  return rc;
}
origin: pierre/meteo

public TopicMessageStore createTopicMessageStore(ActiveMQTopic destination) throws IOException {
  TopicMessageStore rc = topics.get(destination);
  if (rc == null) {
    rc = new MemoryTopicMessageStore(destination);
    if (transactionStore != null) {
      rc = transactionStore.proxy(rc);
    }
    topics.put(destination, rc);
  }
  return rc;
}
origin: pierre/meteo

public MessageStore createQueueMessageStore(ActiveMQQueue destination) throws IOException {
  MessageStore rc = queues.get(destination);
  if (rc == null) {
    rc = new MemoryMessageStore(destination);
    if (transactionStore != null) {
      rc = transactionStore.proxy(rc);
    }
    queues.put(destination, rc);
  }
  return rc;
}
origin: org.apache.activemq/activemq-jdbc-store

@Override
public MessageStore createQueueMessageStore(ActiveMQQueue destination) throws IOException {
  MessageStore rc = new JDBCMessageStore(this, getAdapter(), wireFormat, destination, audit);
  if (transactionStore != null) {
    rc = transactionStore.proxy(rc);
  }
  return rc;
}
origin: org.apache.activemq/activemq-jdbc-store

@Override
public TopicMessageStore createTopicMessageStore(ActiveMQTopic destination) throws IOException {
  TopicMessageStore rc = new JDBCTopicMessageStore(this, getAdapter(), wireFormat, destination, audit);
  if (transactionStore != null) {
    rc = transactionStore.proxy(rc);
  }
  return rc;
}
origin: org.apache.activemq/activemq-all

@Override
public TopicMessageStore createTopicMessageStore(ActiveMQTopic destination) throws IOException {
  TopicMessageStore rc = new JDBCTopicMessageStore(this, getAdapter(), wireFormat, destination, audit);
  if (transactionStore != null) {
    rc = transactionStore.proxy(rc);
  }
  return rc;
}
origin: org.apache.activemq/activemq-all

@Override
public MessageStore createQueueMessageStore(ActiveMQQueue destination) throws IOException {
  MessageStore rc = new JDBCMessageStore(this, getAdapter(), wireFormat, destination, audit);
  if (transactionStore != null) {
    rc = transactionStore.proxy(rc);
  }
  return rc;
}
origin: org.apache.activemq/activemq-osgi

@Override
public MessageStore createQueueMessageStore(ActiveMQQueue destination) throws IOException {
  MessageStore rc = new JDBCMessageStore(this, getAdapter(), wireFormat, destination, audit);
  if (transactionStore != null) {
    rc = transactionStore.proxy(rc);
  }
  return rc;
}
origin: pierre/meteo

public TopicMessageStore createTopicMessageStore(ActiveMQTopic destination) throws IOException {
  TopicMessageStore rc = new JDBCTopicMessageStore(this, getAdapter(), wireFormat, destination, audit);
  if (transactionStore != null) {
    rc = transactionStore.proxy(rc);
  }
  return rc;
}
origin: org.apache.activemq/activemq-osgi

@Override
public TopicMessageStore createTopicMessageStore(ActiveMQTopic destination) throws IOException {
  TopicMessageStore rc = new JDBCTopicMessageStore(this, getAdapter(), wireFormat, destination, audit);
  if (transactionStore != null) {
    rc = transactionStore.proxy(rc);
  }
  return rc;
}
origin: pierre/meteo

public MessageStore createQueueMessageStore(ActiveMQQueue destination) throws IOException {
  MessageStore rc = new JDBCMessageStore(this, getAdapter(), wireFormat, destination, audit);
  if (transactionStore != null) {
    rc = transactionStore.proxy(rc);
  }
  return rc;
}
org.apache.activemq.store.memoryMemoryTransactionStoreproxy

Popular methods of MemoryTransactionStore

  • <init>
  • acknowledge
  • addMessage
  • delete
  • getTx
  • removeMessage
  • onProxyQueueStore
  • onProxyTopicStore
  • onRecovered
  • recover

Popular in Java

  • Making http requests using okhttp
  • requestLocationUpdates (LocationManager)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registry of org.quartz.Job
  • 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