net.hycube.pastry.join.routejoin.PastryRouteJoinTimeoutEvent 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.pastry.join.routejoin;
import net.hycube.eventprocessing.Event;
import net.hycube.eventprocessing.ProcessEventProxy;
import net.hycube.join.JoinManager;
public class PastryRouteJoinTimeoutEvent extends Event {
protected JoinManager joinManager;
protected int joinId;
public PastryRouteJoinTimeoutEvent(PastryRouteJoinManager joinManager, ProcessEventProxy eventProxy, int joinId) {
super(0, joinManager.getJoinTimeoutEventType(), eventProxy, null);
this.joinManager = joinManager;
this.joinId = joinId;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy