Uses of Interface
com.mckoi.store.AreaWriter
-
Packages that use AreaWriter Package Description com.mckoi.store -
-
Uses of AreaWriter in com.mckoi.store
Classes in com.mckoi.store that implement AreaWriter Modifier and Type Class Description private class
AbstractStore.StoreAreaWriter
private static class
HeapStore.HeapAreaWriter
Fields in com.mckoi.store declared as AreaWriter Modifier and Type Field Description private AreaWriter
AbstractStore.AreaOutputStream. writer
Methods in com.mckoi.store that return AreaWriter Modifier and Type Method Description AreaWriter
AbstractStore. createArea(long size)
AreaWriter
HeapStore. createArea(long size)
AreaWriter
Store. createArea(long size)
Allocates a block of memory in the store of the specified size and returns an AreaWriter object that can be used to initialize the contents of the area.(package private) AreaWriter
HeapStore.HeapAreaElement. getAreaWriter()
Returns a new AreaWriter object for this element.Methods in com.mckoi.store with parameters of type AreaWriter Modifier and Type Method Description void
AbstractStore.StoreArea. copyTo(AreaWriter destination_writer, int size)
void
Area. copyTo(AreaWriter destination_writer, int size)
Copies 'size' bytes from the current position of this Area to the destination AreaWriter.void
HeapStore.HeapArea. copyTo(AreaWriter destination, int size)
Constructors in com.mckoi.store with parameters of type AreaWriter Constructor Description AreaOutputStream(AreaWriter writer)
-