697071727374757677
this.file = file; } public File getFile() throws HeapException { if (file == null) { throw new HeapException("missing file parameter"); } return file; }
808182838485868788
this.maxRetry = maxRetry; } public int getMaxRetry() throws HeapException { if (maxRetry == null) { throw new HeapException("missing max retry parameter"); } return maxRetry; }
919293949596979899
this.retryMsDelay = retryMsDelay; } public int getRetryMsDelay() throws HeapException { if (retryMsDelay == null) { throw new HeapException("missing retry wait time parameter"); } return retryMsDelay; }
102103104105106107108109110
this.useCache = useCache; } public boolean isUseCache() throws HeapException { if (useCache == null) { throw new HeapException("missing use cache parameter"); } return useCache; }
113114115116117118119120121
this.useReadCache = useReadCache; } public boolean isUseReadCache() throws HeapException { if (useReadCache == null) { throw new HeapException("missing use read cache parameter"); } return useReadCache; }
124125126127128129130131132
this.pageSize = pageSize; } public int getPageSize() throws HeapException { if (pageSize == null) { throw new HeapException("missing page size parameter"); } return pageSize; }
135136137138139140141142143
this.maxPage = maxPage; } public int getMaxPage() throws HeapException { if (maxPage == null) { throw new HeapException("missing max page parameter"); } return maxPage; }
146147148149150151152153154
this.maxBufferSize = maxBufferSize; } public int getMaxBufferSize() throws HeapException { if (maxBufferSize == null) { throw new HeapException("missing max buffer size parameter"); } return maxBufferSize; }
157158159160161162163164165
this.maxNumberOfBuffer = maxNumberOfBuffer; } public int getMaxNumberOfBuffer() throws HeapException { if (maxNumberOfBuffer == null) { throw new HeapException("mising max number of buffers parameter"); } return maxNumberOfBuffer; }
230231232233234235236237238239
&& recordSize != 0 && recordSize < DATA_RECORD_HEADER_SIZE + nodeIdentifier.getKeyDataSize() + dataAssociatedSize + 4) { logger.fatal(RECORD_SIZE_TO_SMALL_FOR_DATA); throw new HeapException(new HeapException( RECORD_SIZE_TO_SMALL_FOR_DATA)); } return true; }