CommandBuilderRewriterRegistry

Registry for managing command builder rewriters.

This registry allows registration and lookup of rewriters based on command types, enabling dynamic modification of command builders before execution.

See also

Inheritors

Functions

Link copied to clipboard
abstract fun getRewriter(commandType: Class<*>): CommandBuilderRewriter?

Gets the rewriter for the specified command type.

Link copied to clipboard
abstract fun register(rewriter: CommandBuilderRewriter)

Registers a command builder rewriter.

Link copied to clipboard
abstract fun unregister(commandType: Class<*>)

Unregisters the rewriter for the specified command type.