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

io.iron.ironmq.QueueContainer Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 3.0.5
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy