Interface SpinnakerApplicationEvent
-
public interface SpinnakerApplicationEventThe base type for all Spinnaker application events that are accessible by plugins.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.ObjectgetSource()The originating object that created the event.longgetTimestamp()The timestamp (epoch milliseconds) when the event was created.
-
-
-
Method Detail
-
getSource
@Nullable java.lang.Object getSource()
The originating object that created the event.IMPORTANT: Service developers should exercise caution setting this value, as it could leak an internal service class, establishing an unwanted implicit contract with plugin developers.
-
getTimestamp
long getTimestamp()
The timestamp (epoch milliseconds) when the event was created.
-
-