Spring.Messaging.Nms.Listener.Adapter.MessageListenerAdapter.GetHandlerMethodName C# (CSharp) Method

GetHandlerMethodName() protected method

Gets the name of the listener method that is supposed to handle the given message. The default implementation simply returns the configured default listener method, if any.
if thrown by NMS API methods
protected GetHandlerMethodName ( IMessage originalIMessage, object extractedMessage ) : string
originalIMessage IMessage The NMS request message.
extractedMessage object The converted JMS request message, /// to be passed into the listener method as argument.
return string
        protected virtual string GetHandlerMethodName(IMessage originalIMessage, object extractedMessage)
        {
            return DefaultHandlerMethod;
        }