Interface IMessageFilter
Filters the messages to be processed.
Namespace: Silverback.Messaging.Subscribers
Assembly: Silverback.Core.dll
Syntax
public interface IMessageFilter
Methods
| Improve this doc View sourceMustProcess(object)
Returns a boolean value indicating whether the specified message must be processed by the subscribed method decorated with this attribute.
Declaration
bool MustProcess(object message)
Parameters
Type | Name | Description |
---|---|---|
object | message | The message to be checked. |
Returns
Type | Description |
---|---|
bool | A boolean value indicating whether the message must be processed by the subscribed method. |