com.bigdata.resources.AbstractResult Maven / Gradle / Ivy
package com.bigdata.resources;
import com.bigdata.btree.IndexMetadata;
import com.bigdata.btree.IndexSegment;
import com.bigdata.service.DataService;
/**
* Abstract base class for results when post-processing a named index
* partition on the old journal after an overflow operation.
*
* @author Bryan Thompson
* @version $Id$
*/
public abstract class AbstractResult {
/**
* Hash code is based on the {@link #name}.
*/
public int hashCode() {
return name.hashCode();
}
/**
* Equal iff the same instance.
*/
public boolean equals(Object o) {
return this == o;
}
/**
* The source index partition for the operation.
*
* @see DataService#getIndexPartitionName(String, int)
*/
public final String name;
/**
* The index metadata object for the source index partition.
*/
public final IndexMetadata indexMetadata;
/**
*
* @param name
* The name of the source index partition.
* @param indexMetadata
* The index metadata object for the source index partition.
*/
public AbstractResult(final String name, final IndexMetadata indexMetadata) {
if (name == null)
throw new IllegalArgumentException();
if (indexMetadata == null)
throw new IllegalArgumentException();
this.name = name;
this.indexMetadata = indexMetadata;
}
public String toString() {
return super.toString()+"{name="+name+"}";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy