seda.sandStorm.lib.aDisk |
|
Java Source File Name | Type | Comment |
AFile.java | Class | This class represents an asynchronous file I/O interface.
To use this class, the user creates an AFile corresponding to a given
filename. |
AFileCloseRequest.java | Class | A request to close the given file. |
AFileCompletion.java | Class | Abstract base class of AFile I/O completion events. |
AFileEOFReached.java | Class | A completion event indicating that EOF was reached on the given
file during an attempted I/O operation. |
AFileFlushRequest.java | Class | A request to flush all pending I/O events on the given file. |
AFileImpl.java | Class | Package-access only abstract class representing an implementation of
the AFile interface. |
AFileIOCompleted.java | Class | Completion event indicating that a previous I/O request on the
file completed. |
AFileIOExceptionOccurred.java | Class | A completion event indicating that an IOException occurred during
the corresponding I/O request. |
AFileMgr.java | Class | The AFileMgr is an internal class used to provide an interface between
the Sandstorm runtime and the aDisk library. |
AFileReadRequest.java | Class | A request to read data from a file. |
AFileRequest.java | Class | Abstract base class of I/O requests which can be posted to the
AFile enqueue() methods. |
AFileSeekRequest.java | Class | A request to seek to the given offset of the given file. |
AFileStat.java | Class | This class provides information about a file. |
AFileTM.java | Class | Internal abstract class used to represent an AFile thread manager. |
AFileTPEventHandler.java | Class | The event handler used by the AFileTPImpl stage. |
AFileTPImpl.java | Class | This is an implementation of AFile which uses a pool of threads
which perform blocking I/O (through the java.io.RandomAccessFile
class) on files. |
AFileTPStageWrapper.java | Class | Internal stage wrapper implementation for AFileTPImpl. |
AFileTPTM.java | Class | This is the ThreadManager implementation for AFileTPImpl. |
AFileWriteRequest.java | Class | A request to write to a file. |
FileIsDirectoryException.java | Class | This exception is thrown when attempting to open a file that is a
directory. |