io.iron.ironmq.QueueContainer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ironmq Show documentation
Show all versions of ironmq Show documentation
An easy-to-use highly available message queuing service. Built for distributed
cloud applications with critical messaging needs. Provides on-demand message
queuing with HTTPS transport, one-time FIFO delivery, message persistence,
and cloud-optimized performance.
package io.iron.ironmq;
public class QueueContainer {
private QueueModel queue;
public QueueContainer() {
}
public QueueContainer(QueueModel queue) {
this.queue = queue;
}
public QueueModel getQueue() {
return queue;
}
public void setQueue(QueueModel queue) {
this.queue = queue;
}
}