Uses of Interface
org.syrup.InPort

Packages that use InPort
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 InPort in org.syrup
 

Methods in org.syrup that return InPort
 InPort Link.to()
          Returns the InPort of the Link.
 InPort Workflow.in_1_binding()
          Returns the new InPort that the parent's first input will be re-linked to.
 InPort Workflow.in_2_binding()
          Returns the new InPort that the parent's second input will be re-linked to.
 

Uses of InPort in org.syrup.helpers
 

Classes in org.syrup.helpers that implement InPort
 class InPortImpl
          An generic InPort implementation.
 

Methods in org.syrup.helpers that return InPort
 InPort LinkImpl.to()
           
 InPort NetworkImpl.in_1_binding()
           
 InPort NetworkImpl.in_2_binding()
           
 InPort WorkflowImpl.in_1_binding()
           
 InPort WorkflowImpl.in_2_binding()
           
 

Constructors in org.syrup.helpers with parameters of type InPort
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 InPort in org.syrup.sql
 

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