Apache Tuscany SCA Kernel Sub-Project

Uses of Interface
org.apache.tuscany.spi.wire.OutboundWire

Packages that use OutboundWire
org.apache.tuscany.spi.builder   
org.apache.tuscany.spi.component   
org.apache.tuscany.spi.extension   
org.apache.tuscany.spi.policy   
org.apache.tuscany.spi.wire   
 

Uses of OutboundWire in org.apache.tuscany.spi.builder
 

Methods in org.apache.tuscany.spi.builder with parameters of type OutboundWire
 void Connector.connect(InboundWire inbound, OutboundWire outbound, boolean optimizable)
          Bridges the invocation chains associated with an inbound and outbound wire.
 void WirePostProcessor.process(InboundWire source, OutboundWire target)
           
 void WirePostProcessor.process(OutboundWire source, InboundWire target)
           
 

Uses of OutboundWire in org.apache.tuscany.spi.component
 

Methods in org.apache.tuscany.spi.component that return OutboundWire
 OutboundWire Service.getOutboundWire()
          Returns the outbound wire for flowing a request out of the service
 OutboundWire Reference.getOutboundWire()
          Returns the outbound wire used by the reference to connect to a target
 

Methods in org.apache.tuscany.spi.component that return types with arguments of type OutboundWire
 Map<String,List<OutboundWire>> Component.getOutboundWires()
          Returns a map of source-side wires for references.
 

Methods in org.apache.tuscany.spi.component with parameters of type OutboundWire
 void Component.addOutboundWire(OutboundWire wire)
          Adds a source-side wire for the given reference.
 TargetInvoker Reference.createAsyncTargetInvoker(OutboundWire wire, Operation operation)
          Callback to create a TargetInvoker which issues a non-blocking dispatch
 void Service.setOutboundWire(OutboundWire wire)
          Sets the outbound wire for flowing a request out of the service
 void Reference.setOutboundWire(OutboundWire wire)
          Sets the outbound wire used by the reference to connect to a target
 

Method parameters in org.apache.tuscany.spi.component with type arguments of type OutboundWire
 void Component.addOutboundWires(Class<?> multiplicityClass, List<OutboundWire> wires)
          Adds a set of source-side multiplicity wires for the given reference.
 

Uses of OutboundWire in org.apache.tuscany.spi.extension
 

Fields in org.apache.tuscany.spi.extension declared as OutboundWire
protected  OutboundWire ServiceExtension.outboundWire
           
protected  OutboundWire ReferenceExtension.outboundWire
           
 

Fields in org.apache.tuscany.spi.extension with type parameters of type OutboundWire
protected  Map<String,List<OutboundWire>> AtomicComponentExtension.referenceWires
           
 

Methods in org.apache.tuscany.spi.extension that return OutboundWire
 OutboundWire ServiceExtension.getOutboundWire()
           
 OutboundWire ReferenceExtension.getOutboundWire()
           
 

Methods in org.apache.tuscany.spi.extension that return types with arguments of type OutboundWire
 Map<String,List<OutboundWire>> CompositeComponentExtension.getOutboundWires()
           
 Map<String,List<OutboundWire>> AtomicComponentExtension.getOutboundWires()
           
 

Methods in org.apache.tuscany.spi.extension with parameters of type OutboundWire
 void CompositeComponentExtension.addOutboundWire(OutboundWire wire)
           
 void AtomicComponentExtension.addOutboundWire(OutboundWire wire)
           
 TargetInvoker ReferenceExtension.createAsyncTargetInvoker(OutboundWire wire, Operation operation)
           
protected  void AtomicComponentExtension.onReferenceWire(OutboundWire wire)
           
 void ServiceExtension.setOutboundWire(OutboundWire outboundWire)
           
 void ReferenceExtension.setOutboundWire(OutboundWire outboundWire)
           
 

Method parameters in org.apache.tuscany.spi.extension with type arguments of type OutboundWire
 void CompositeComponentExtension.addOutboundWires(Class<?> multiplicityClass, List<OutboundWire> wires)
           
 void AtomicComponentExtension.addOutboundWires(Class<?> multiplicityClass, List<OutboundWire> wires)
           
protected  void AtomicComponentExtension.onReferenceWires(Class<?> multiplicityClass, List<OutboundWire> wires)
           
 

Uses of OutboundWire in org.apache.tuscany.spi.policy
 

Methods in org.apache.tuscany.spi.policy with parameters of type OutboundWire
 void SourcePolicyBuilder.build(ReferenceDefinition referenceDefinition, OutboundWire wire)
           
 void PolicyBuilderRegistry.buildSource(ReferenceDefinition referenceDefinition, OutboundWire wire)
          Evaluates source-side policy metadata for referenceDefinition and updates the curresponding collection of wire configurations
 

Uses of OutboundWire in org.apache.tuscany.spi.wire
 

Methods in org.apache.tuscany.spi.wire that return OutboundWire
 OutboundWire WireService.createWire(ReferenceTarget reference, ReferenceDefinition def)
          Creates a wire for flowing outbound invocations to a reference
 

Methods in org.apache.tuscany.spi.wire with parameters of type OutboundWire
 void InboundWire.setTargetWire(OutboundWire wire)
          Set when a wire can be optimized; that is when no handlers or interceptors exist on either end
 


Apache Tuscany SCA Kernel Sub-Project

-