/**
* This message is called by the ConnectorCore when a message was receive. It will be translatet to the Application
* representation and the translatet message if send via the registered callback to the application.
*
* @param msg
* @throws InvalidObjectException
*/
public void msgReceived(CISPayload payload) throws InvalidObjectException {
log.info("--> messageReceived");
// create and forward the message to the connector
if (AppCallbackHandlerImpl.getInstance().getCallback(CoreConstants.MSGTYPE_MLP) != null) {
AppCallbackHandlerImpl.getInstance().getCallback(CoreConstants.MSGTYPE_MLP).msgReceived(payload);
}
log.info("messageReceived -->");
}
MLPConnectorCoreExt.java 文件源码
java
阅读 15
收藏 0
点赞 0
评论 0
项目:CommonInformationSpace
作者:
评论列表
文章目录