Uses of Class
org.apache.activemq.store.kahadb.disk.page.Page
Packages that use Page
Package
Description
-
Uses of Page in org.apache.activemq.store.kahadb
Fields in org.apache.activemq.store.kahadb declared as PageModifier and TypeFieldDescriptionprotected Page<MessageDatabase.Metadata>MessageDatabase.Metadata.pageMethods in org.apache.activemq.store.kahadb that return PageModifier and TypeMethodDescriptionAbstractKahaDBMetaData.getPage()KahaDBMetaData.getPage()Gets the Page in the store PageFile where the KahaDBMetaData instance is stored.Methods in org.apache.activemq.store.kahadb with parameters of type Page -
Uses of Page in org.apache.activemq.store.kahadb.disk.index
Methods in org.apache.activemq.store.kahadb.disk.index that return PageMethods in org.apache.activemq.store.kahadb.disk.index with parameters of type PageModifier and TypeMethodDescriptionvoidvoidConstructors in org.apache.activemq.store.kahadb.disk.index with parameters of type Page -
Uses of Page in org.apache.activemq.store.kahadb.disk.page
Methods in org.apache.activemq.store.kahadb.disk.page that return PageModifier and TypeMethodDescription<T> Page<T>Transaction.allocate()Allocates a free page that you can write data to.<T> Page<T>Transaction.allocate(int count) Allocates a block of free pages that you can write data to.<T> Page<T>Transaction.load(long pageId, Marshaller<T> marshaller) Loads a page from disk.Methods in org.apache.activemq.store.kahadb.disk.page that return types with arguments of type PageModifier and TypeMethodDescriptionTransaction.iterator()Allows you to iterate through all active Pages in this object.Transaction.iterator(boolean includeFreePages) Allows you to iterate through all active Pages in this object.Methods in org.apache.activemq.store.kahadb.disk.page with parameters of type PageModifier and TypeMethodDescription<T> voidFrees up a previously allocated page so that it can be re-allocated again.<T> voidFrees up a previously allocated sequence of pages so that it can be re-allocated again.<T> voidTransaction.load(Page<T> page, Marshaller<T> marshaller) Loads a page from disk.Transaction.openInputStream(Page p) Transaction.openOutputStream(Page page, boolean overflow) <T> voidTransaction.store(Page<T> page, Marshaller<T> marshaller, boolean overflow)