This PR renames HandlerMethod to Receptor and performs other naming improvements related to this change. Also, methods that produce messages are now called Emitters.
So the convention is this:
Receiver, Producer, Subscriber, Assignee, and Reactor are objects that handle messages.
Receptor and Emitter are methods of corresponding objects.
Other notable renamings:
CommandAssignee_Everything_ is renamed to be just Assignee_Everything_. We don't have other Assignees other than those that deal with commands.
CommandReactionMethod -> CommandingReaction.
There are more renamings introduced by this PR. Those above are given to describe the general schema of name changes.
This PR renames
HandlerMethod
toReceptor
and performs other naming improvements related to this change. Also, methods that produce messages are now calledEmitter
s.So the convention is this:
Receiver
,Producer
,Subscriber
,Assignee
, andReactor
are objects that handle messages.Receptor
andEmitter
are methods of corresponding objects.Other notable renamings:
CommandAssignee_Everything_
is renamed to be justAssignee_Everything_
. We don't have otherAssignee
s other than those that deal with commands.CommandReactionMethod
->CommandingReaction
.There are more renamings introduced by this PR. Those above are given to describe the general schema of name changes.