SimpleServerCommandExchange
class SimpleServerCommandExchange<C : Any>(val message: CommandMessage<C>, val attributes: MutableMap<String, Any> = ConcurrentHashMap()) : ServerCommandExchange<C>
Simple implementation of ServerCommandExchange.
This class provides a basic implementation of the server command exchange, storing the command message and any additional attributes for command processing.
Parameters
message
the command message being processed
attributes
mutable map for storing additional exchange data
Type Parameters
C
the type of the command