Interface IMessageProcessor
This defines the lowest-level strategy of processing a Message and returning some Object(or null). Implementations will be focused on generic concerns, such as invoking a method, running a script, or evaluating an expression.
Namespace: Steeltoe.Integration.Handler
Assembly: Steeltoe.Integration.Abstractions.dll
Syntax
public interface IMessageProcessor
Methods
| Edit this page View SourceProcessMessage(IMessage)
Process a message and return a value or null
Declaration
object ProcessMessage(IMessage message)
Parameters
Type | Name | Description |
---|---|---|
IMessage | message | message to process |
Returns
Type | Description |
---|---|
System.Object | resulting object |