Package jadex.bridge.sensor.service
Interface IMethodInvocationListener
-
- All Known Implementing Classes:
UserMethodInvocationListener
public interface IMethodInvocationListenerInterface for listeners that are notified when a service method is invoked.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidmethodCallFinished(java.lang.Object proxy, java.lang.reflect.Method method, java.lang.Object[] args, java.lang.Object callid, ServiceInvocationContext context)Called when the method call is finished.voidmethodCallStarted(java.lang.Object proxy, java.lang.reflect.Method method, java.lang.Object[] args, java.lang.Object callid, ServiceInvocationContext context)Called when a method call started.
-
-
-
Method Detail
-
methodCallStarted
void methodCallStarted(java.lang.Object proxy, java.lang.reflect.Method method, java.lang.Object[] args, java.lang.Object callid, ServiceInvocationContext context)Called when a method call started.
-
methodCallFinished
void methodCallFinished(java.lang.Object proxy, java.lang.reflect.Method method, java.lang.Object[] args, java.lang.Object callid, ServiceInvocationContext context)Called when the method call is finished.
-
-