}
public Response<IdAllocation> allocateIds( IdType idType )
{
IdGenerator generator = graphDbConfig.getIdGeneratorFactory().get( idType );
IdAllocation result = new IdAllocation( generator.nextIdBatch( ID_GRAB_SIZE ), generator.getHighId(),
generator.getDefragCount() );
return MasterUtil.packResponseWithoutTransactionStream( graphDb, SlaveContext.EMPTY, result );
}
public Response<Long> commitSingleResourceTransaction( SlaveContext context, String resource,