Encapsulates a method that has a single in parameter and does not return a value used for Subscribe<T>(MessageHandler<T>) method.
public delegate void MessageHandler<T>(in T message);
T
The type of the parameter of the method that this delegate encapsulates.
message
T
The parameter of the method that this delegate encapsulates.