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

com.fasterxml.clustermate.api.EntryKey Maven / Gradle / Ivy

Go to download

Data types needed for service abstraction, used by both server and client components.

The newest version!
package com.fasterxml.clustermate.api;

import com.fasterxml.storemate.shared.StorableKey;

/**
 * Base class for application-specific "refined" keys, constructed usually
 * from {@link StorableKey}.
 *

* Instances must be immutable and usable as {@link java.util.Map} keys. */ public abstract class EntryKey implements StorableKey.Convertible { @Override public abstract StorableKey asStorableKey(); public abstract byte[] asBytes(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy