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

com.sproutsocial.nsq.Message Maven / Gradle / Ivy

There is a newer version: 1.4.8
Show newest version
package com.sproutsocial.nsq;

public interface Message {

    String getTopic();

    byte[] getData();

    String getId();

    int getAttempts();

    long getTimestamp();

    void finish();

    void requeue();

    void requeue(int delayMillis);

    void touch();

    void forceFlush();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy