Uses of Interface
org.syrup.OutPort

Packages that use OutPort
org.syrup Provides all the basic Syrup interfaces. 
org.syrup.helpers Provides the most used implementations of Syrup interfaces. 
org.syrup.sql The concrete RDMS/JDBC implementation of Syrup. 
 

Uses of OutPort in org.syrup
 

Methods in org.syrup that return OutPort
 OutPort Link.from()
          Returns the OutPort of the Link.
 OutPort Workflow.out_1_binding()
          Returns the new OutPort that the parent's first output will be re-linked to.
 OutPort Workflow.out_2_binding()
          Returns the new OutPort that the parent's second output will be re-linked to.
 

Uses of OutPort in org.syrup.helpers
 

Classes in org.syrup.helpers that implement OutPort
 class OutPortImpl
          An generic OutPort implementation.
 

Methods in org.syrup.helpers that return OutPort
 OutPort LinkImpl.from()
           
 OutPort NetworkImpl.out_1_binding()
           
 OutPort NetworkImpl.out_2_binding()
           
 OutPort WorkflowImpl.out_1_binding()
           
 OutPort WorkflowImpl.out_2_binding()
           
 

Constructors in org.syrup.helpers with parameters of type OutPort
LinkImpl(OutPort f, InPort t, Data c)
          Constructor for the LinkImpl object
NetworkImpl(InPort in1, InPort in2, OutPort out1, OutPort out2, Task[] t, Link[] l)
          Constructor for the NetworkImpl object
 

Uses of OutPort in org.syrup.sql
 

Methods in org.syrup.sql with parameters of type OutPort
protected  void UpdateFunctions.rewireOutLink(java.lang.String old_task, boolean old_port, OutPort op, java.util.Hashtable map, SyrupConnection con)
          Rewires the output Link from one PTask to another by executing SQL statements over a Connection.