Package org.voltdb.utils

Examples of org.voltdb.utils.NotImplementedException


        return (this.countedStmts[partition]);
    }

    @Override
    public PartitionSet getTouchedPartitions(EstimationThresholds t) {
        throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
    }
View Full Code Here


//        return (false);
//    }

    @Override
    public boolean isSinglePartitioned(EstimationThresholds t) {
        throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
    }
View Full Code Here

//        throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
//    }

    @Override
    public boolean isReadOnlyPartition(EstimationThresholds t, int partition) {
        throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
    }
View Full Code Here

        throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
    }

    @Override
    public boolean isReadOnlyAllPartitions(EstimationThresholds t) {
        throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
    }
View Full Code Here

        return (false);
    }

    @Override
    public boolean isWritePartition(EstimationThresholds t, int partition) {
        throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
    }
View Full Code Here

        throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
    }

    @Override
    public PartitionSet getWritePartitions(EstimationThresholds t) {
        throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
    }
View Full Code Here

        return (false);
    }

    @Override
    public boolean isDonePartition(EstimationThresholds t, int partition) {
        throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
    }
View Full Code Here

        throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
    }

    @Override
    public PartitionSet getDonePartitions(EstimationThresholds t) {
        throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
    }
View Full Code Here

        return false;
    }

    @Override
    public boolean isAbortable(EstimationThresholds t) {
        throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
    }
View Full Code Here

        this.statesPool.returnObject((RemoteEstimatorState)state);
    }

    @Override
    public <T extends Estimate> T executeQueries(EstimatorState state, Statement[] catalog_stmts, PartitionSet[] partitions) {
        throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
    }
View Full Code Here

TOP

Related Classes of org.voltdb.utils.NotImplementedException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.