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

org.skyscreamer.nevado.jms.util.MessageIdUtil Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
package org.skyscreamer.nevado.jms.util;

import java.util.UUID;

/**
 * Generate nevado-specific message ID's when SQS message ID's aren't sufficient
 *
 * @author Carter Page 
 */
public class MessageIdUtil {
    public static String createMessageId() {
        return "ID:nevado-" + UUID.randomUUID().toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy