Package org.fusesource.hawtdb.internal.page

Examples of org.fusesource.hawtdb.internal.page.HawtPageFile


                        pageSize = his.readShort();
                    } else {
                    }
                }

                pageFile = new HawtPageFile(mappedFileFactory.getMemoryMappedFile(), pageSize, headerSize, maxPages, storeFreePages);

                if( freePageExtent >=0 ) {
                    DataInputStream is = new DataInputStream(new ExtentInputStream(pageFile, freePageExtent));
                    pageFile.allocator().getFreeRanges().readExternal(is);
                    is.close();
View Full Code Here

TOP

Related Classes of org.fusesource.hawtdb.internal.page.HawtPageFile

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.