Package com.apama.file

Event summary
CloseFileSend this event to close a File based on the sessionId it's being used with. This can be used with both files opened for reading and ones for writing.
EndOfFileSent when all lines have been read.
FileClosedSent in response to a CloseFile Request, or when shutdown occurs, When file has been successfully closed, this event will be sent.
FileErrorFileError events are received from the file adapter in response to requests made from Apama applications which were unsuccessful. The event contains the requestId it is in response to, and a message which can be logged to get more information.
FileHandleThis event is returned from the File Adapter as a response to a successful Open request, and contains a session ID to use when either matching on events received from the File Session, or with further requests, such as Close, reading or writing events.
FileLineFileLine events are sent to or returned from the adapter. Each line is associated with a specific sessionId, and the data is stored within a sequence of strings.
LineWrittenFileLines sent to the adapter for writing can optionally request an acknowledgement that they have been completed.
NewFileOpenedNewFileOpened event.
OpenFileForReadingThe OpenFileForReading event is a signal to the FileAdapter to open the file specified in order to read lines and deliver back events.
OpenFileForReadingToContextThe OpenFileForReadingToContext event is a signal to the FileAdapter to open the files specified in order to read lines and deliver back events to the specified context.
OpenFileForWritingThe OpenFileForWriting event is a signal to the FileAdapter to open the file specified in order to write events to it.
OpenFileForWritingToContextThe OpenFileForWritingToContext event is a signal to the FileAdapter to open the files specified in order to write lines and deliver back events to the specified context.
ReadLinesThe ReadLines event is a request to the File Adapter to read line(s), which in response will return FileLine events.
ServiceMonitorOnlineSend this event from any service monitor used with this adapter when the monitor comes online.
ServiceMonitorUnloadedSend this event from any service monitor used with this adapter if the service monitor is unloaded (send from unload). This will allow the monitor to notify the application and discontinue the sending of status information. This is purely optional.

 

 

 
Monitor summary
FileStatusManagerThis monitor is a status manager for the File adapter. It implements both sides of the status interface, i.e., the IAFStatusManager events on the adapter side, and the StatusSupport events on the application side.
ParallelFileAdapterSupportMonitor to handle parallel reading.