Uses of Class
org.granite.messaging.service.ServiceInvocationContext

Packages that use ServiceInvocationContext
org.granite.messaging.service   
org.granite.messaging.service.security   
 

Uses of ServiceInvocationContext in org.granite.messaging.service
 

Methods in org.granite.messaging.service that return ServiceInvocationContext
 ServiceInvocationContext DefaultMethodMatcher.findServiceMethod(Message message, Destination destination, Object service, String methodName, Object[] params)
           
 ServiceInvocationContext MethodMatcher.findServiceMethod(Message message, Destination destination, Object service, String methodName, Object[] params)
           
 

Methods in org.granite.messaging.service with parameters of type ServiceInvocationContext
 Object ServiceInvocationListener.afterInvocation(ServiceInvocationContext context, Object result)
           
protected  Object ServiceInvoker.afterInvocation(ServiceInvocationContext context, Object result)
          Called after a successful invocation of the service's method.
 void ServiceInvocationListener.afterInvocationError(ServiceInvocationContext context, Throwable t)
           
protected  void ServiceInvoker.afterInvocationError(ServiceInvocationContext context, Throwable error)
          Called after a failed invocation of the service's method, possibly after a new attempt (see ServiceInvoker.retryInvocation(ServiceInvocationContext, Throwable).
 void ServiceInvocationListener.beforeInvocation(ServiceInvocationContext context)
           
protected  void ServiceInvoker.beforeInvocation(ServiceInvocationContext context)
          Called before the invocation of the services method.
 ServiceException ServiceExceptionHandler.handleInvocationException(ServiceInvocationContext context, Throwable t)
           
protected  boolean ServiceInvoker.retryInvocation(ServiceInvocationContext context, Throwable t)
          Called after a failed invocation of the service's method.
 

Uses of ServiceInvocationContext in org.granite.messaging.service.security
 

Methods in org.granite.messaging.service.security with parameters of type ServiceInvocationContext
 void RemotingDestinationSecurizer.canExecute(ServiceInvocationContext context)