Package cloud.filibuster.dei
Class DistributedExecutionIndexBase
- java.lang.Object
-
- cloud.filibuster.dei.DistributedExecutionIndexBase
-
- All Implemented Interfaces:
java.lang.Cloneable
- Direct Known Subclasses:
DistributedExecutionIndexV1
public abstract class DistributedExecutionIndexBase extends java.lang.Object implements java.lang.Cloneable
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.ArrayList<java.util.Map.Entry<DistributedExecutionIndexKey,java.lang.Integer>>
callstack
protected java.util.HashMap<DistributedExecutionIndexKey,java.lang.Integer>
counters
-
Constructor Summary
Constructors Constructor Description DistributedExecutionIndexBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
clone()
DistributedExecutionIndex
deserialize(java.lang.String serialized)
boolean
equals(java.lang.Object o)
int
hashCode()
void
pop()
void
push(Callsite callsite)
java.lang.String
toString()
-
-
-
Field Detail
-
counters
protected java.util.HashMap<DistributedExecutionIndexKey,java.lang.Integer> counters
-
callstack
protected java.util.ArrayList<java.util.Map.Entry<DistributedExecutionIndexKey,java.lang.Integer>> callstack
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
push
public void push(Callsite callsite)
-
pop
public void pop()
-
deserialize
public DistributedExecutionIndex deserialize(java.lang.String serialized)
-
clone
public java.lang.Object clone()
- Overrides:
clone
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-