package com.tandbergtv.watchpoint.communication;

import com.tandbergtv.workflow.core.service.Service;
import com.tandbergtv.workflow.message.IMessage;

/**
 * Communication interface for PMM.
 * 
 * @author Raj Prakash
 */
public interface IMessageService extends Service {
	
	/**
	 * Gateway for delivering the message.
	 * 
	 * @param message	the request message
	 * @return			the response message
	 */
	IMessage receive(IMessage message);
}
