com.sap.tc.logging.interfaces
Interface IFileSetLog

All Known Implementing Classes:
ReadFileSetLog

public interface IFileSetLog


Method Summary
 java.io.File getFile()
          Gets the current file in rotating file set
 java.io.File getFile(int index)
          Gets the file from rotating fileset on given position (index).
 java.io.File getFileLatest()
          Gets the latest (newest) file from the rotating fileset.
 java.io.File getFilePrime()
          Gets the prime (oldest) file from the rotating fileset.
 int getIndex()
          Gets the current file index in rotating file set
 int getLimit()
          Gets the limit file size used for sequencing on the rotating output file
 int getSize()
          Gets the size of rotating fileset, number of files in fileset.
 boolean isInFileSet()
          Check is the file in rotating file set
 void moveToBOFS()
          Move rotating fileset index to the beginning of the fileset
 void moveToEOFS()
          Move rotating fileset index to the end of the fileset
 void next()
          Move rotating fileset index to next position.
 void previous()
          Move rotating fileset index to previous position.
 void setIndex(int value)
          Sets the current file index in rotating file set
 void setLimit(int value)
          Sets the limit file size used for sequencing on the rotating output file
 void setSize(int value)
          Sets the size of rotating fileset, number of files in fileset.
 

Method Detail

getLimit

public int getLimit()
Gets the limit file size used for sequencing on the rotating output file
Returns:
Limit file size

setLimit

public void setLimit(int value)
Sets the limit file size used for sequencing on the rotating output file
Returns:
Limit file size

getSize

public int getSize()
Gets the size of rotating fileset, number of files in fileset.
Returns:
Number of files in rotating fileset.

setSize

public void setSize(int value)
Sets the size of rotating fileset, number of files in fileset.
Returns:
Number of files in rotating fileset.

getIndex

public int getIndex()
Gets the current file index in rotating file set
Returns:
Limit file size

setIndex

public void setIndex(int value)
Sets the current file index in rotating file set

isInFileSet

public boolean isInFileSet()
Check is the file in rotating file set
Returns:
true if file is part of fileset

getFile

public java.io.File getFile()
Gets the current file in rotating file set
Returns:
java.io.File

getFile

public java.io.File getFile(int index)
Gets the file from rotating fileset on given position (index).
Returns:
java.io.File

getFileLatest

public java.io.File getFileLatest()
Gets the latest (newest) file from the rotating fileset.
Returns:
java.io.File

getFilePrime

public java.io.File getFilePrime()
Gets the prime (oldest) file from the rotating fileset.
Returns:
java.io.File

next

public void next()
Move rotating fileset index to next position.

previous

public void previous()
Move rotating fileset index to previous position.

moveToBOFS

public void moveToBOFS()
Move rotating fileset index to the beginning of the fileset

moveToEOFS

public void moveToEOFS()
Move rotating fileset index to the end of the fileset