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>>callstackprotected 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.Objectclone()DistributedExecutionIndexdeserialize(java.lang.String serialized)booleanequals(java.lang.Object o)inthashCode()voidpop()voidpush(Callsite callsite)java.lang.StringtoString()
-
-
-
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:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein 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:
clonein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-