com.sssw.srv.mail
Class AgoCharStoreDyna
java.lang.Object
|
+--com.sssw.srv.mail.AgoCharStore
|
+--com.sssw.srv.mail.AgoCharStoreDyna
- public class AgoCharStoreDyna
- extends AgoCharStore
Stores a set of characters. If the set of characters is small (4 megabytes),
it is stored in memory. Otherwise, it is stored in a temporary file.
The AgoCharStoreDyna class is a concrete subclass of AgoCharStore
.
Methods inherited from class com.sssw.srv.mail.AgoCharStore |
append,
append,
append,
append,
append,
getOffset,
getReader,
incrementOffset,
length,
peek,
peek,
read,
reset,
setOffset,
toString,
write,
write |
AgoCharStoreDyna
public AgoCharStoreDyna()
- Constructor for the AgoCharStoreDyna class.
- Example:
AgoCharStoreDyna charStore = new AgoCharStoreDyna();
AgoCharStoreDyna
public AgoCharStoreDyna(Reader reader)
throws IOException
- A constructor for the AgoCharStoreDyna class.
- Parameters:
reader
- the Reader to get the contents from.- Usage:
The contents of the Reader are read into the character store.
- Example:
AgoCharStoreDyna charStore = new AgoCharStoreDyna(someReader);