GCA 0.4.0

pfg.gca.collector
Interface ICollector

All Known Implementing Classes:
IBM131a, IBM130a

public interface ICollector

A collector collects GC records from a raw verbose GC stream. Since verbose GC output is typically gathered from system error, data unrelated to GC activity may also appear. Since the format of the raw verbose GC data depend on the JDK version, a different implementation is needed for each format.

Author:
Paul Glezen

Method Summary
 java.lang.String getDescription()
          Describes which JDK versions this collector supports.
 java.util.List getGCList(java.io.Reader reader)
          Convert raw verbose GC from the Reader to a List of GCRecord.
 

Method Detail

getDescription

public java.lang.String getDescription()
Describes which JDK versions this collector supports.

getGCList

public java.util.List getGCList(java.io.Reader reader)
                         throws java.io.IOException
Convert raw verbose GC from the Reader to a List of GCRecord.

Paul Glezen
http://glezen.org/gca/

Generated: February 24 2005