All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.elasticmq.Client.scala Maven / Gradle / Ivy

The newest version!
package org.elasticmq

/**
 * Client to an ElasticMQ [[org.elasticmq.Node]].
 *
 * Were appropriate, methods may throw [[org.elasticmq.QueueDoesNotExistException]] or
 * [[org.elasticmq.MessageDoesNotExistException]] if an operation on a non-existent queue or message is
 * requested. However, under correct API usage these exceptions should not occur.
 *
 * All ElasticMQ client classes are thread-safe.
 */
trait Client {
  def createQueue(name: String): Queue
  def createQueue(queueBuilder: QueueBuilder): Queue
  
  def lookupQueue(name: String): Option[Queue]

  def lookupOrCreateQueue(name: String): Queue
  def lookupOrCreateQueue(queueBuilder: QueueBuilder): Queue
  
  def listQueues: Seq[Queue]

  /**
   * Returns an interface to operations on the given queue.
   *
   * This method does not query the server and does not verify if the queue exists.
   */
  def queueOperations(name: String): QueueOperations
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy