Tuscany Core

Uses of Interface
org.apache.tuscany.core.wire.MessageHandler

Packages that use MessageHandler
org.apache.tuscany.core.wire   
org.apache.tuscany.core.wire.impl   
 

Uses of MessageHandler in org.apache.tuscany.core.wire
 

Fields in org.apache.tuscany.core.wire with type parameters of type MessageHandler
protected  List<MessageHandler> InvocationConfiguration.requestHandlers
           
protected  List<MessageHandler> InvocationConfiguration.responseHandlers
           
 

Methods in org.apache.tuscany.core.wire that return types with arguments of type MessageHandler
 List<MessageHandler> InvocationConfiguration.getRequestHandlers()
          Returns the request handler chain
 List<MessageHandler> InvocationConfiguration.getResponseHandlers()
          Returns the response handler chain
 

Methods in org.apache.tuscany.core.wire with parameters of type MessageHandler
 void InvocationConfiguration.addRequestHandler(MessageHandler handler)
          Adds an request handler to the invocation chain
 void InvocationConfiguration.addResponseHandler(MessageHandler handler)
          Adds an response handler to the invocation chain
 

Uses of MessageHandler in org.apache.tuscany.core.wire.impl
 

Classes in org.apache.tuscany.core.wire.impl that implement MessageHandler
 class MessageDispatcher
          A message handler that dispatches the message through an interceptor stack and the uses the response channel to return the wire result.
 

Constructor parameters in org.apache.tuscany.core.wire.impl with type arguments of type MessageHandler
MessageChannelImpl(List<MessageHandler> pipeline)
          Construct a new channel comprising the supplied list of handlers.
 


Tuscany Core

-