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

com.slack.api.rate_limits.queue.MessageIdGeneratorUUIDImpl Maven / Gradle / Ivy

There is a newer version: 1.39.0
Show newest version
package com.slack.api.rate_limits.queue;

import java.util.UUID;

public class MessageIdGeneratorUUIDImpl implements MessageIdGenerator {

    @Override
    public String generate() {
        return UUID.randomUUID().toString();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy