blob: 557e43db0bd1baffeab799d47c68563de82db88d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.ote.messaging.dds.listener;
import org.eclipse.osee.ote.messaging.dds.DataStoreItem;
import org.eclipse.osee.ote.messaging.dds.IDestination;
import org.eclipse.osee.ote.messaging.dds.ISource;
/**
* The interface for receiving events from the <code>DomainParticipant</code>. This class also extends the
* <code>TopicListener</code>, <code>SubscriberListener</code>, and <code>PublisherListener</code>.
*
* @see org.eclipse.osee.ote.messaging.dds.entity.DomainParticipant
* @author Robert A. Fisher
* @author David Diepenbrock
*/
public interface DomainParticipantListener extends TopicListener, SubscriberListener, PublisherListener {
/**
* The method called whenever data is published within the DDS system. This can be used by the listening object to
* propogate information out to local entities running DDS.
*
* @param destination TODO
* @param source TODO
* @param dataStoreItem - The published information.
*/
public void onPublishNotifyMiddleware(IDestination destination, ISource source, DataStoreItem dataStoreItem);
}