unregister

abstract fun unregister(id: UUID): Boolean

Unregisters a source line by its unique identifier.

Return

true if the source line was successfully unregistered, false if not found.

Parameters

id

The unique identifier of the source line to unregister.


abstract fun unregister(name: String): Boolean

Unregisters a source line by its name.

Return

true if the source line was successfully unregistered, false if not found.

Parameters

name

The name of the source line to unregister.


open fun unregister(line: T): Boolean

Unregisters a source line using the provided source line instance.

Return

true if the source line was successfully unregistered, false if not found.

Parameters

line

The source line to unregister.