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

com.github.davidmarquis.redisq.producer.MessageSender Maven / Gradle / Ivy

Go to download

RedisQ - Java implementation of a reliable Pub/Sub message queue based on Redis

The newest version!
package com.github.davidmarquis.redisq.producer;

import java.util.concurrent.TimeUnit;

public interface MessageSender {

    MessageSender withTimeToLive(long time, TimeUnit unit);

    MessageSender withTargetConsumer(String consumerId);

    void submit();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy