unregister

abstract fun unregister(@NotNull id: @NotNull UUID): Boolean

Unregisters an activation specified by its unique identifier.

Return

true if the activation was successfully unregistered, false if the activation was not found.

Parameters

id

The unique identifier of the activation.


open fun unregister(@NotNull name: @NotNull String): Boolean

Unregisters an activation specified by its name.

Return

true if the activation was successfully unregistered, false if the activation was not found.

Parameters

name

The name of the activation to unregister.


open fun unregister(@NotNull activation: @NotNull T): Boolean

Unregisters a given activation from the manager.

Return

true if the activation was successfully unregistered, false if the activation was not found.

Parameters

activation

The activation to unregister.