SilverStream
Application Server 3.5

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.


Constructor Summary
AgoCharStoreDyna()
          Constructor for the AgoCharStoreDyna class.
AgoCharStoreDyna(Reader reader)
          A constructor for the AgoCharStoreDyna class.
 
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
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

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);
 

SilverStream
Application Server 3.5