com.grandcentral.appstats
Interface FlushListener

All Known Implementing Classes:
TaskLogger

public interface FlushListener

Event listener for when Task.flush is called. Allows analysis of a Task before its stats are aggregated and cleared.

Version:
$Version: $
Author:
Adrian Dorsman
See Also:
Task.registerFlushListener(com.grandcentral.appstats.FlushListener),

Copyright: Copyright (c) 2002

Company: Grand Central Communications


Method Summary
 void taskFlushed(Task t)
          this handler is invoked when t.flush() is called, before the Task has been aggregated to its parent.
 

Method Detail

taskFlushed

public void taskFlushed(Task t)
this handler is invoked when t.flush() is called, before the Task has been aggregated to its parent. Please don't call t.flush() inside this method, for your own sake.