Class Event
The following example shows how to implement an Event class.
public class Example {
    @Label("Hello World")
    @Description("Helps programmer getting started")
    static class HelloWorld extends Event {
        @Label("Message")
        String message;
    }
    public static void main(String... args) {
        HelloWorld event = new HelloWorld();
        event.message = "hello, world!";
        event.commit();
    }
}
After an event is allocated and its field members are populated, it can be
written to the Flight Recorder system by using the commit() method.
By default, an event is enabled. To disable an event annotate the
Event class with @Enabled(false).
Supported field types are the Java primitives: boolean, char,
byte, short, int, long, float, and
double. Supported reference types are: String, Thread
and Class. Arrays, enums, and other reference types are silently
ignored and not included. Fields that are of the supported types can be
excluded by using the transient modifier. Static fields, even of the
supported types, are not included.
Tools can visualize data in a meaningful way when annotations are used (for
example, Label, Description, and Timespan).
Annotations applied to an Event class or its fields are included if
they are present (indirectly, directly, or associated), have the
MetadataDefinition annotation, and they do not contain enums, arrays,
or classes.
Gathering data to store in an event can be expensive. The
shouldCommit() method can be used to verify whether an event
instance would actually be written to the system when the
commit() method is invoked. If
shouldCommit() returns false, then those operations can be
avoided.
- Since:
- 9
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedEvent()Sole constructor, for invocation by subclass constructors, typically implicit.
- 
Method SummaryModifier and TypeMethodDescriptionfinal voidbegin()Starts the timing of this event.final voidcommit()Writes the field values, time stamp, and event duration to the Flight Recorder system.final voidend()Ends the timing of this event.final booleanReturnstrueif at least one recording is running, and the enabled setting for this event is set totrue, otherwisefalseis returned.final voidSets a field value.final booleanReturnstrueif the enabled setting for this event is set totrueand if the duration is within the threshold for the event,falseotherwise.
- 
Constructor Details- 
Eventprotected Event()Sole constructor, for invocation by subclass constructors, typically implicit.
 
- 
- 
Method Details- 
beginpublic final void begin()Starts the timing of this event.
- 
endpublic final void end()Ends the timing of this event. Theendmethod must be invoked after thebeginmethod.
- 
commitpublic final void commit()Writes the field values, time stamp, and event duration to the Flight Recorder system.If the event starts with an invocation of the beginmethod, but does not end with an explicit invocation of theendmethod, then the event ends when thecommitmethod is invoked.
- 
isEnabledpublic final boolean isEnabled()Returnstrueif at least one recording is running, and the enabled setting for this event is set totrue, otherwisefalseis returned.- Returns:
- trueif event is enabled,- falseotherwise
 
- 
shouldCommitpublic final boolean shouldCommit()Returnstrueif the enabled setting for this event is set totrueand if the duration is within the threshold for the event,falseotherwise. The threshold is the minimum threshold for all running recordings.- Returns:
- trueif the event can be written to the Flight Recorder system,- falseotherwise
 
- 
setSets a field value.Applicable only if the event is dynamically defined using the EventFactoryclass.The supplied indexcorresponds to the index of theValueDescriptorobject passed to the factory method of theEventFactoryclass.- Parameters:
- index- the index of the field that is passed to- EventFactory.create(java.util.List, java.util.List)
- value- value to set, can be- null
- Throws:
- UnsupportedOperationException- if it's not a dynamically generated event
- IndexOutOfBoundsException- if- indexis less than- 0or greater than or equal to the number of fields specified for the event
- See Also:
 
 
-