| Package | Description |
|---|---|
| io.pythagoras.messagebus.core |
| Modifier and Type | Method and Description |
|---|---|
void |
IMessageHandler.handleMessage(A message)
Because all 3 handle methods will be called (other 2 are in IMessageHandler2, if available), you should
only have one method do any real work.
|
void |
IMessageHandler2.handleMessage(A message,
Date sentTime)
Because all 3 handle methods will be called, you should only have one method do any real work.
|
void |
IMessageHandler2.handleRawMessage(String messageBody,
Date sentTime)
Because all 3 handle methods will be called, you should only have one method do any real work.
|
void |
IMessageBus.receiveMessage(IBusMessage busMessage)
Handles a generic message coming in from the message Bus, and converts it into the
specific contract types and dispatches it.
|
void |
MessageBusService.receiveMessage(IBusMessage busMessage)
Handles a generic message coming in from the message Bus, and converts it into the
specific contract types and dispatches it.
|
Copyright © 2019. All rights reserved.