Package jadex.providedservice
Interface IMethodInvocationListener
public interface IMethodInvocationListener
Interface for listeners that are notified when a service method is invoked.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
methodCallFinished
(Object proxy, Method method, Object[] args, Object callid, ServiceInvocationContext context) Called when the method call is finished.void
methodCallStarted
(Object proxy, Method method, Object[] args, Object callid, ServiceInvocationContext context) Called when a method call started.
-
Method Details
-
methodCallStarted
void methodCallStarted(Object proxy, Method method, Object[] args, Object callid, ServiceInvocationContext context) Called when a method call started. -
methodCallFinished
void methodCallFinished(Object proxy, Method method, Object[] args, Object callid, ServiceInvocationContext context) Called when the method call is finished.
-