MessageFunctionRegistrar

Registry for message functions that can be registered and queried.

Provides functionality to register/unregister functions and find functions that support processing specific messages.

Parameters

F

The type of message function being registered

Inheritors

Properties

Link copied to clipboard
abstract val functions: Set<F>

The set of all registered functions.

Functions

Link copied to clipboard
abstract fun register(function: F)

Registers a message function.

Link copied to clipboard

Finds all functions that support processing the given message.

Link copied to clipboard
abstract fun unregister(function: F)

Unregisters a message function.