Method | Description | |
---|---|---|
HandlerFailed ( IMessage message, |
A message was received by this process, but a handler threw an exception
|
|
Inject ( string errorQueuePath ) : void |
Inject this hook into the messaging system. Any handler exceptions will be written to the queue as `IHandlerExceptionMessage`s
|
|
LocalQueueExceptionHook ( IMessageSerialiser serialiser, string errorQueuePath ) : System |
Create a new event hook, with the given storage queue. You should use the static Inject method to add this hook.
|
|
MessageReceived ( IMessage message ) : void |
Does nothing
|
|
MessageSent ( IMessage message ) : void |
Does nothing
|
public HandlerFailed ( IMessage message, |
||
message | IMessage | The incoming message |
handler | Type of the failed handler | |
error | Exception thrown | |
return | void |
public static Inject ( string errorQueuePath ) : void | ||
errorQueuePath | string | |
return | void |
public LocalQueueExceptionHook ( IMessageSerialiser serialiser, string errorQueuePath ) : System | ||
serialiser | IMessageSerialiser | |
errorQueuePath | string | |
return | System |
public MessageReceived ( IMessage message ) : void | ||
message | IMessage | |
return | void |
public MessageSent ( IMessage message ) : void | ||
message | IMessage | |
return | void |