|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Paged | |
---|---|
org.fusesource.hawtdb.api | The HawDB client API As implementation interfaces harden up, they will get moved into this package. |
Uses of Paged in org.fusesource.hawtdb.api |
---|
Subinterfaces of Paged in org.fusesource.hawtdb.api | |
---|---|
interface |
PageFile
A page file provides paged access to a physical file. |
interface |
Transaction
Provides transactional access to a Paged resource. |
Methods in org.fusesource.hawtdb.api with parameters of type Paged | |
---|---|
SortedIndex<Key,Value> |
BTreeIndexFactory.create(Paged paged)
Creates a new BTree index on the Paged object. |
Index<Key,Value> |
IndexFactory.create(Paged paged)
|
Index<Key,Value> |
HashIndexFactory.create(Paged paged)
Creates a new hash index on the Paged object. |
protected abstract T |
AbstractStreamPagedAccessor.decode(Paged paged,
java.io.DataInputStream is)
|
protected T |
CodecPagedAccessor.decode(Paged paged,
java.io.DataInputStream is)
|
protected abstract void |
AbstractStreamPagedAccessor.encode(Paged paged,
java.io.DataOutputStream os,
T data)
|
protected void |
CodecPagedAccessor.encode(Paged paged,
java.io.DataOutputStream os,
T data)
|
T |
AbstractStreamPagedAccessor.load(Paged paged,
int page)
|
T |
PagedAccessor.load(Paged paged,
int page)
Load a value from a specified page. |
SortedIndex<Key,Value> |
BTreeIndexFactory.open(Paged paged)
Loads an existing BTree index from the paged object. |
Index<Key,Value> |
IndexFactory.open(Paged paged)
|
Index<Key,Value> |
HashIndexFactory.open(Paged paged)
Loads an existing hash index from the paged object. |
SortedIndex<Key,Value> |
BTreeIndexFactory.open(Paged paged,
int indexNumber)
Loads an existing BTree index from the paged object. |
Index<Key,Value> |
IndexFactory.open(Paged paged,
int indexNumber)
|
Index<Key,Value> |
HashIndexFactory.open(Paged paged,
int indexNumber)
Loads an existing hash index from the paged object. |
java.util.List<java.lang.Integer> |
AbstractStreamPagedAccessor.pagesLinked(Paged paged,
int page)
|
java.util.List<java.lang.Integer> |
PagedAccessor.pagesLinked(Paged paged,
int page)
Returns a list of the pages linked to the specified page. |
java.util.List<java.lang.Integer> |
AbstractStreamPagedAccessor.store(Paged paged,
int page,
T data)
|
java.util.List<java.lang.Integer> |
PagedAccessor.store(Paged paged,
int page,
T value)
Store a value at the specified page. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |