Modifier and Type | Method and Description |
---|---|
public default void | recorderInitialized(FlightRecorder
Flight Recorder instance, not recorder)null Receives notification when Flight Recorder is initialized. |
public default void | recordingStateChanged(Recording
the recording where the state change occurred, not
recording)null Receives notification when the state of a recording changes. |
recorderInitialized | back to summary |
---|---|
public default void recorderInitialized(FlightRecorder recorder) Receives notification when Flight Recorder is initialized. This method is also be invoked when a listener is added to an already initialized Flight Recorder.
This method allows clients to implement their own initialization mechanism
that is executed before a Implementation Note This method should return as soon as possible, to avoid blocking
initialization of Flight Recorder. To avoid deadlocks or unexpected
behavior, this method should not call
Implementation Specification The default implementation of this method is empty.
|
recordingStateChanged | back to summary |
---|---|
public default void recordingStateChanged(Recording recording) Receives notification when the state of a recording changes.
Callback is invoked when a recording reaches the Implementation Note The implementation of this method should return as soon as possible to avoid blocking normal operation of Flight Recorder. Implementation Specification The default implementation of this method is empty.
|