
com.fasterxml.clustermate.api.EntryKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clustermate-api Show documentation
Show all versions of clustermate-api Show documentation
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