net.hycube.maintenance.HyCubePnsExtension Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hycube Show documentation
Show all versions of hycube Show documentation
HyCube is a distributed hash table based on a hierarchical hypercube geometry, employing a novel variable metric adopting the Steinhaus transform.
package net.hycube.maintenance;
import net.hycube.common.EntryPoint;
import net.hycube.core.NodeAccessor;
import net.hycube.environment.NodeProperties;
import net.hycube.extensions.Extension;
public class HyCubePnsExtension implements Extension {
@Override
public void initialize(NodeAccessor nodeAccessor, NodeProperties properties) {
}
@Override
public void postInitialize() {
}
@Override
public EntryPoint getExtensionEntryPoint() {
return null;
}
@Override
public void discard() {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy