View Javadoc
1 package org.smartcomps.twister.engine.priv.core.definition; 2 3 import org.smartcomps.twister.engine.priv.core.definition.CorrelationRef; 4 5 import java.util.Set; 6 import java.util.Collection; 7 8 /*** 9 * A message event is declared on a Pick activity. Its semantic is identical 10 * to a receive activity, the Pick is waiting for the message corresponding 11 * to the message event until an alarm is fired. 12 * @see org.smartcomps.twister.engine.priv.core.definition.Pick 13 */ 14 public interface MessageEvent { 15 16 public String getPartnerLink(); 17 18 public void setPartnerLink(String partnerLink); 19 20 public String getPortType(); 21 22 public void setPortType(String portType); 23 24 public String getOperation(); 25 26 public void setOperation(String operation); 27 28 public String getVariable(); 29 30 public void setVariable(String variable); 31 32 public Collection getCorrelations(); 33 34 public void addCorrelation(CorrelationRef correlationRef); 35 36 }

This page was automatically generated by Maven