Apache Tuscany SCA Kernel Sub-Project

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

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

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

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

Methods in org.apache.tuscany.spi.wire that return types with arguments of type InboundInvocationChain
 Map<Operation<?>,InboundInvocationChain> InboundWire.getInvocationChains()
          Returns the invocation chain for each operation on a service specified by a reference or a target service.
 Map<Operation<?>,InboundInvocationChain> OutboundWire.getTargetCallbackInvocationChains()
          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 InboundInvocationChain
 void InboundWire.addInvocationChain(Operation<?> operation, InboundInvocationChain chain)
          Adds the invocation chain associated with the given operation
 void OutboundWire.addTargetCallbackInvocationChain(Operation<?> operation, InboundInvocationChain chain)
          Adds the callback invocation chain associated with the given operation
 Object AbstractInboundInvocationHandler.invoke(InboundInvocationChain chain, TargetInvoker invoker, Object[] args)
          Dispatches a client request made on a proxy
 

Method parameters in org.apache.tuscany.spi.wire with type arguments of type InboundInvocationChain
 void InboundWire.addInvocationChains(Map<Operation<?>,InboundInvocationChain> chains)
          Adds the collection of invocation chains keyed by operation
 void OutboundWire.addTargetCallbackInvocationChains(Map<Operation<?>,InboundInvocationChain> chains)
          Adds the collection of callback invocation chains keyed by operation
 


Apache Tuscany SCA Kernel Sub-Project

-