Interface IMessageHandlerMethodFactory
A factory for invokable handler methods that is suitable to process an incoming message
Namespace: Steeltoe.Messaging.Handler.Attributes.Support
Assembly: Steeltoe.Messaging.Abstractions.dll
Syntax
public interface IMessageHandlerMethodFactory
Methods
| Edit this page View SourceCreateInvocableHandlerMethod(Object, MethodInfo)
Create the invokable handler method that can process the specified method endpoint.
Declaration
IInvocableHandlerMethod CreateInvocableHandlerMethod(object instance, MethodInfo method)
Parameters
Type | Name | Description |
---|---|---|
System.Object | instance | the instance of the object |
MethodInfo | method | the method to invoke |
Returns
Type | Description |
---|---|
IInvocableHandlerMethod | a suitable invokable handler for the method |
Initialize()
Declaration
void Initialize()