Apache Tuscany SCA Kernel Sub-Project

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

Packages that use OutboundInvocationChain
org.apache.tuscany.spi.wire   
 

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

Methods in org.apache.tuscany.spi.wire that return OutboundInvocationChain
 OutboundInvocationChain WireService.createOutboundChain(Operation<?> operation)
          Creates an outbound invocation chain for a given operation
 

Methods in org.apache.tuscany.spi.wire that return types with arguments of type OutboundInvocationChain
 Map<Operation<?>,OutboundInvocationChain> OutboundWire.getInvocationChains()
          Returns the invocation configuration for each operation on a service specified by a reference or a target service.
 Map<Operation<?>,OutboundInvocationChain> InboundWire.getSourceCallbackInvocationChains(Object targetAddr)
          Returns the callback invocation configuration for each operation on a service specified by a reference or a target service.
 

Methods in org.apache.tuscany.spi.wire with parameters of type OutboundInvocationChain
 void OutboundWire.addInvocationChain(Operation<?> operation, OutboundInvocationChain chain)
          Adds the invocation chain associated with the given operation
 void InboundWire.addSourceCallbackInvocationChain(Object targetAddr, Operation<?> operation, OutboundInvocationChain chain)
          Adds the callback invocation chain associated with the given operation for a given target addr
protected  Object AbstractOutboundInvocationHandler.invoke(OutboundInvocationChain chain, TargetInvoker invoker, Object[] args)
           
 

Method parameters in org.apache.tuscany.spi.wire with type arguments of type OutboundInvocationChain
 void OutboundWire.addInvocationChains(Map<Operation<?>,OutboundInvocationChain> chains)
          Adds the collection of invocation chains keyed by operation
 void InboundWire.addSourceCallbackInvocationChains(Object targetAddr, Map<Operation<?>,OutboundInvocationChain> chains)
          Adds the collection of callback invocation chains keyed by operation for a given target addr
 


Apache Tuscany SCA Kernel Sub-Project

-