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

com.netflix.astyanax.recipes.UUIDStringSupplier Maven / Gradle / Ivy

There is a newer version: 3.10.2
Show newest version
package com.netflix.astyanax.recipes;

import java.util.UUID;

import com.google.common.base.Supplier;
import com.netflix.astyanax.util.TimeUUIDUtils;

public class UUIDStringSupplier implements Supplier {
    private static final UUIDStringSupplier instance = new UUIDStringSupplier();

    public static UUIDStringSupplier getInstance() {
        return instance;
    }

    @Override
    public String get() {
        UUID uuid = TimeUUIDUtils.getUniqueTimeUUIDinMicros();
        return uuid.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy