Skip to main content
summaryrefslogtreecommitdiffstats
blob: 3e3f180f96f668d1a8924ab0c5bff99ad71723e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Created on Mar 23, 2010
 *
 * PLACE_YOUR_DISTRIBUTION_STATEMENT_RIGHT_HERE
 */
package org.eclipse.osee.framework.skynet.core.event;

import java.util.Collection;
import java.util.List;
import org.eclipse.osee.framework.core.exception.OseeCoreException;
import org.eclipse.osee.framework.messaging.event.skynet.ISkynetEvent;

/**
 * @author Donald G. Dunne
 */
public interface ITransactionEventDispatcher extends IEventDispatcher {

   public void kickLocalEvents(final Sender sender, Collection<ArtifactTransactionModifiedEvent> xModifiedEvents, FrameworkTransactionData transData);

   public void generateNetworkSkynetEvents(Sender sender, Collection<ArtifactTransactionModifiedEvent> xModifiedEvents, List<ISkynetEvent> resultEvents) throws OseeCoreException;

}

Back to the top