| org.griphyn.cPlanner.partitioner.Callback
All known Subclasses: org.griphyn.cPlanner.partitioner.WriterCallback, org.griphyn.cPlanner.partitioner.ClustererCallback,
Callback | public interface Callback (Code) | | This interface defines the callback calls from the partitioners. The
partitioners call out to the appropriate callback methods as and when they
determine that a partition has been constructed.
author: Karan Vahi version: $Revision: 50 $ |
Method Summary | |
public void | cbDone() Callback for the partitioner to signal that it is done with the processing. | public void | cbParents(String child, List parents) Callback for when a partitioner determines the relations between partitions
that it has previously constructed. | public void | cbPartition(Partition partition) Callback for when a partitioner determines that partition has been
constructed. |
cbDone | public void cbDone()(Code) | | Callback for the partitioner to signal that it is done with the processing.
|
cbParents | public void cbParents(String child, List parents)(Code) | | Callback for when a partitioner determines the relations between partitions
that it has previously constructed.
Parameters: child - the id of a partition. Parameters: parents - the list of String objects that containthe id's of the parents of the partition. |
cbPartition | public void cbPartition(Partition partition)(Code) | | Callback for when a partitioner determines that partition has been
constructed.
Parameters: partition - the constructed partition. |
|
|