Interface ExtensionStopInput
-
@Immutable @DoNotImplement public interface ExtensionStopInput
Input object when an extension is stopped.- Since:
- 4.0.0, CE 2019.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull Map<String,@NotNull ExtensionInformation>getEnabledExtensions()@NotNull ExtensionInformationgetExtensionInformation()@NotNull ServerInformationgetServerInformation()Get information about the HiveMQ instance the extension is running in.
-
-
-
Method Detail
-
getExtensionInformation
@NotNull ExtensionInformation getExtensionInformation()
- Returns:
- A
ExtensionInformationcontaining detailed information about this extension. - Since:
- 4.0.0, CE 2019.1
-
getServerInformation
@NotNull ServerInformation getServerInformation()
Get information about the HiveMQ instance the extension is running in.- Returns:
- The
ServerInformationof the input. - Since:
- 4.2.0, CE 2020.1
-
getEnabledExtensions
@NotNull Map<String,@NotNull ExtensionInformation> getEnabledExtensions()
- Returns:
- A
Mapof all currently enabled extensions. The key is the ID of the extension. The value is aExtensionInformationcontaining detailed information about each extension. - Since:
- 4.0.0, CE 2019.1
-
-