Apache Tuscany SCA Kernel Sub-Project

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

Packages that use InboundWire
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 InboundWire in org.apache.tuscany.spi.builder
 

Methods in org.apache.tuscany.spi.builder with parameters of type InboundWire
 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 InboundWire in org.apache.tuscany.spi.component
 

Methods in org.apache.tuscany.spi.component that return InboundWire
 InboundWire Service.getInboundWire()
          Returns the inbound wire for flowing a request through the service
 InboundWire Reference.getInboundWire()
          Returns the inbound wire for flowing a request through the reference
 InboundWire Component.getInboundWire(String serviceName)
          Returns the target-side wire associated with the given service name
 

Methods in org.apache.tuscany.spi.component that return types with arguments of type InboundWire
 Map<String,InboundWire> Component.getInboundWires()
          Returns a map of inbound wires for a service.
 

Methods in org.apache.tuscany.spi.component with parameters of type InboundWire
 void Component.addInboundWire(InboundWire wire)
          Adds a target-side wire.
 TargetInvoker Component.createAsyncTargetInvoker(InboundWire wire, Operation operation)
          Callback to create a TargetInvoker which dispatches to a service offered by the component
 void Service.setInboundWire(InboundWire wire)
          Sets the inbound wire for flowing a request through the service
 void Reference.setInboundWire(InboundWire wire)
          Sets the inbound wire for flowing a request through the reference
 

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

Fields in org.apache.tuscany.spi.extension declared as InboundWire
protected  InboundWire ServiceExtension.inboundWire
           
protected  InboundWire ReferenceExtension.inboundWire
           
 

Fields in org.apache.tuscany.spi.extension with type parameters of type InboundWire
protected  Map<String,InboundWire> AtomicComponentExtension.serviceWires
           
 

Methods in org.apache.tuscany.spi.extension that return InboundWire
 InboundWire ServiceExtension.getInboundWire()
           
 InboundWire ReferenceExtension.getInboundWire()
           
 InboundWire CompositeComponentExtension.getInboundWire(String serviceName)
           
 InboundWire AtomicComponentExtension.getInboundWire(String serviceName)
           
 

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

Methods in org.apache.tuscany.spi.extension with parameters of type InboundWire
 void CompositeComponentExtension.addInboundWire(InboundWire wire)
           
 void AtomicComponentExtension.addInboundWire(InboundWire wire)
           
 TargetInvoker CompositeComponentExtension.createAsyncTargetInvoker(InboundWire wire, Operation operation)
           
 TargetInvoker AtomicComponentExtension.createAsyncTargetInvoker(InboundWire wire, Operation operation)
           
protected  void AtomicComponentExtension.onServiceWire(InboundWire wire)
           
 void ServiceExtension.setInboundWire(InboundWire wire)
           
 void ReferenceExtension.setInboundWire(InboundWire wire)
           
 

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

Methods in org.apache.tuscany.spi.policy with parameters of type InboundWire
 void TargetPolicyBuilder.build(ServiceDefinition serviceDefinition, InboundWire wire)
           
 void PolicyBuilderRegistry.buildTarget(ServiceDefinition serviceDefinition, InboundWire wire)
          Evaluates target-side policy metadata for configured reference and updates the curresponding collection of wire configurations
 

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

Methods in org.apache.tuscany.spi.wire that return InboundWire
 InboundWire WireService.createWire(ServiceDefinition service)
          Creates a wire for flowing inbound invocations to a service
 

Methods in org.apache.tuscany.spi.wire with parameters of type InboundWire
 WireInvocationHandler WireService.createCallbackHandler(InboundWire wire)
          Creates a wire invocation handler for flowing invocations through a callback
 Object WireService.createCallbackProxy(ServiceContract<?> contract, InboundWire wire)
          Creates a Java proxy for the service contract callback
 void OutboundWire.setTargetWire(InboundWire 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

-